The site below looks great (so far) in Dreamweaver and all the browsers I care to support except IE.
1. The image and copy within the green area (Div id Thumbs) is flush with top margin. Padding on the actual image isn't been seen in IE.
2. The "Shop By Category" background doesn't extend to the full width of the containing div.
These two were working earlier and when I added the Unordered List for the thumbnails, I must have changed something or created something that is interfering.
/* Root Menu Hover Persistence */
ul#navmenu-h a:hover,
ul#navmenu-h li:hover a,
ul#navmenu-h li.iehover a {
background:transparent;
color:#000066;
}
/* 2nd Menu */
ul#navmenu-h li:hover li a,
ul#navmenu-h li.iehover li a {
float: none;
background:transparent;
color:#000066;
}
/* 2nd Menu Hover Persistence */
ul#navmenu-h li:hover li a:hover,
ul#navmenu-h li:hover li:hover a,
ul#navmenu-h li.iehover li a:hover,
ul#navmenu-h li.iehover li.iehover a {
background:#000066;
line-height: 1.75em;
color: #FFF;
}
#navmenu-h li a.last {
border: none;
}
#navmenu-h li a.current {
color:#000033;
}
/* Do Not Move - Must Come Before display:block for Gecko */
ul#navmenu-h li:hover ul ul,
ul#navmenu-h li:hover ul ul ul,
ul#navmenu-h li.iehover ul ul,
ul#navmenu-h li.iehover ul ul ul {
display: none;
}
ul#navmenu-h li:hover ul,
ul#navmenu-h ul li:hover ul,
ul#navmenu-h ul ul li:hover ul,
ul#navmenu-h li.iehover ul,
ul#navmenu-h ul li.iehover ul,
ul#navmenu-h ul ul li.iehover ul {
display: block;
}
Re: CSS woes by Abraham Chaffin on Jun 12, 2008 at 9:52:55 pm
[kelly johnson]"1. The image and copy within the green area (Div id Thumbs) is flush with top margin. Padding on the actual image isn't been seen in IE."
1) Add padding: 15px; to #intro and remove the padding from #intro img. This should get you close but might give you other padding issues with the text. Try it and see how close it gets you...
[kelly johnson]"2. The "Shop By Category" background doesn't extend to the full width of the containing div."