I'm in the process of redoing one of my websites using EW. The website was created and maintained with FP.
I've begun to create some master pages (which will become templates) and am having several difficulties. The one, described, here, relates to a problem with padding in an unordered list in IE7. You can see the problem in IE7 by viewing
http://www.enfolded.info/references/refPhilosophyError.htm (compare it to what happens in in Opera and Firefox). The relevant code in this file is,
.cat ul {
list-style-type: none;
margin: .0px;
padding: .2em .2em .2em 1em;
line-height: 2em;
}
The workaround I discovered is to split the spacing between margin and padding, i.e.,
.cat ul {
list-style-type: none;
margin: 0 0 0 .5em;
padding: .2em .2em .2em .5em;
line-height: 2em;
}
the results of which can be seen by veiwing <URL: http://www.enfolded.info/references/refPhilosophyError.htm > (compare it to what happens in in Opera and Firefox).
You should, too, note that there is also a problem in IE7 with the rendering of the sidebar background-color.
Any comments on the padding problem and suggestions for fixing the sidebar background-color problem?
BTW, I tried long and hard to use <div>s rather than a table for the reference entries, but despite days of trying different layouts, I couldn't make them stable, given the varying lengths of text: I'd think I had it right, add another entry with either longer or shorter text and--bingo!--the structure for the entire page fell apart. If you have the secret for doing this type of page without a table, I'd love to see the solution. Keep in mind, I regularly update reference pages with new reference entries, inserted where most appropriate on the page.
BTW2, FWIW, unordered list inlines and floats do not render properly in the FP design window. You can see what I mean by viewing <URL: http://www.enfolded.info/references/refPhilosophy.htm > in FP.
-Tom