Hello all,
I have a problem with my header, it goes 1px over the wrapper width.
I used the the WIKI to change the template width.
http://wiki.joomlart.com/wiki/JA_Template_Framework/FAQs#Creating_additional_stylesheets
First we will change the class from wrap to main for the following divs:
* ja-header – located in templates/ja_purity_ii/layouts/blocks/header.php, line 1;
* ja-mainnav – located in templates/ja_purity_ii/layouts/blocks/mainnav.php, line 1;
Before:
After:
I found out that in the index.php file there is this code.
[PHP]default:
$tmplWidth = intval($tmplTools->getParam(JA_TOOL_SCREEN));
$tmplWrapMin = $tmplWidth ? ($tmplWidth+1).’px’ : ‘981px’;
$tmplWidth = $tmplWidth ? $tmplWidth.’px’ : ‘980px’;
break;
}[/PHP]
In the second line $tmplWrapMin = $tmplWidth ? ($tmplWidth+1).’px’ : ‘981px’; i can uncomment it by adding //
but is this the proper way can you guys help me out.
Thx regards Bas