Greg wrote:
Looks like the 'Three Pixel Jog' check
this page out.
It looks like it is this 3 pixel jog. Could somebody help me solve this phenomena!
I have tried some of the suggestions I have found, but I maybe doing it wrong because it is not fixing the problem. Could somebody please give me an example of the code that needs to be changed in order to solve this phenomena!
Here is what I have as standard in the templates:
Code: Select all
<!--[if lte IE 6]>
<style type="text/css">
#pagewrapper {width:expression(P7_MinMaxW(950,950));}
#container {height: 1%;}
</style>
<![endif]-->
{/literal}
<!-- The min and max page width for Internet Explorer is set here. For other browsers it's in the stylesheet "Layout: Left sidebar + 1 column" -->
CSS:
Code: Select all
div#content {
margin: 1.5em auto 2em 0; /* some air above and under menu and content */
}
div#main {
margin-left: 29%; /* this will give room for sidebar to be on the left side, make sure this space is bigger than sidebar width */
margin-right: 2%; /* and some air on the right */
}
div#sidebar {
float: left; /* set sidebar on the left side. Change to right to float it right instead. */
width: 26%; /* sidebar width, if you change this please also change #main margins */
display: inline; /* FIX IE double margin bug */
margin-left: 0;
}