On firefox, a template i am creating works fine with the correct percentage, something around 80, however Internet Explorer and Opera require me to use 480% instead.
This is the code for the weird part, its the margin-left part which is causing this hassle:
#sidebar {
float: left;
[b]margin-left: 486%;[/b]
width: 110%;
border-width: 0px 1px 0px 0px;
border-color: black;
border-style: solid;
}
and for it to work in Firefox:
#sidebar {
float: left;
margin-left: 83%;
width: 20%;
border-width: 0px 1px 0px 0px;
border-color: black;
border-style: solid;
}Thanks,
Danny
This post has been edited by danhodge: 12 March 2011 - 02:07 PM

Help














