Changing the rounded corners in the Nova Skin and Profile theme is very simple. You want to edit the following file:
jamroom/skins/Nova/js/jquery.nova.js
inside, you will find a Javascript function called "jrRoundCorners()". It is this function you want to modify:
function jrRoundCorners() {
$('.outer').corners('5px');
$('.inner').corners('5px');
$('.rounded').corners('4px');
$('.rounded_h').corners('4px');
$('.trounded').corners('4px top');
$('.tinner').corners('5px top');
$('.binner').corners('5px bottom');
} |
You can either change the pixel size to suit your needs, or remove an entire line to prevent the Javascript from rounding the elements that match the CSS class.
|