Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
IE CSS issue (default theme/style)
I know IE sucks...
I was tweaking the default style, and added some margins & padding to #Content:
Everything looks fine in Firefox, but in IE the discussion count on the bottom of the screen is doing some funny. It's hanging out in the right margin for some reason.
Any ideas what's going on? What classes/id's should I be looking at to figure out what's wrong?
Thanks!
I was tweaking the default style, and added some margins & padding to #Content:
#Content {
margin:0px 5% 0px 5%;
padding-left:235px;
}
Everything looks fine in Firefox, but in IE the discussion count on the bottom of the screen is doing some funny. It's hanging out in the right margin for some reason.
Any ideas what's going on? What classes/id's should I be looking at to figure out what's wrong?
Thanks!
0
This discussion has been closed.
Comments
And maybe (though too tired to make sense of the bookmark right now)?: 'All discussions' position in IE
As far as the issue... it appears the same ans what pbear pointed out--the margin is creating a blank space that the page numbers are small enough to fall up through. I would suggest adding margins instad as padding on a higher level--as padding on #Content or HTML.
Anyway, following the advice on one of those pages pbear linked to, I added a clear property:
html>body #Content .ContentInfo.Bottom .PageInfo { border-top: 1px solid #fff; clear: left; /* Fix for IE margins (10-5-07) */ }
This positions the "X to Y of Z" correctly now, but the top border above the element disappears. Not perfect, but in lieu of a real fix I guess it can stay that way.
html>body #Content .ContentInfo.Bottom .PageInfo { border-top: 1px solid #fff; margin-top: 3px; /* Fix for IE margins (10-5-07) */ clear: left; /* Fix for IE margins (10-5-07) */ }
Everything looks the same in Firefox.