Jump to content

Recommended Posts

Posted (edited)

There is literally no way i can begin to try and solve this problem :S

 

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

Edited by danhodge
Posted

Just curious...why are you using percents for the margin? Can you show us a link to your page (or at least more of the code)?

Posted

Im centering the site, and i did the other measurements in percentages, so if i use pixels then it will only be centered on monitors the same size as mine...

 

And it seems to be corrected, but im not sure why, i just swapped some code around - but you can see the difference on the site here:

 

http://potatoes.netii.net/

 

 

Can you see what was wrong? I wouldn't mind knowing so i can avoid it next time :S

Posted

Well, I'm viewing in Firefox and it's not centered at all. I've used percentages for container widths before (though I much prefer to use pixels) and it's totally fine to use pixels for positioning at the same time.

 

Just use this for centering your container:

 

margin: 0 auto;

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...