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.
Need help on 3 column layout theme
I'm working on this 3-column layout. Quite easy. It displays the Panel Links on the left, and the Panel Strings on the right.
So far I got it working in Firefox:
But I can't get it to work in IE.
I have added the following CSS:
Check it out at: http://www.jazzman.nl/forum
Anyone got an idea?
So far I got it working in Firefox:
But I can't get it to work in IE.
I have added the following CSS:
#Body {
position: relative;
}
#Panel.PanelLeft {
position: absolute;
top: 0px;
left: 0px;
width: 201px;
padding-left: 18px;
}
#Panel.PanelRight {
position: absolute;
top: 0px;
right: 0px;
width: 220px;
}
#Content {
margin:0px 235px 0px 235px;
}
Check it out at: http://www.jazzman.nl/forum
Anyone got an idea?
0
This discussion has been closed.
Comments
Or do like I did and hack with a IE only feature:
#Panel.PanelRight { position: absolute; top: 0px; right: 0px; /* Firefox positioning */ Left: expression(document.body.clientWidth-220); /* Propritary IE positioning */ width: 220px; }
This seems to work: (screenshot)
#Panel * { margin:0px; padding:0px; list-style:none; } .PanelLeft { position: absolute; left:18px; width:201px; } #Panel.PanelRight { position: absolute; top:0px; right:0px; width:220px; }
Make sure those are IN THAT ORDER, because it seems to make a difference.
and then finally, replace what's currently in the #content with this:
#Content { padding-left:235px; margin-right:235px; }
It's ugly code, I know. But it seems to work. Hope I helped, and keep up the great work jazzman!