Needs review
Project:
Leaf
Version:
master
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
14 Nov 2006 at 20:35 UTC
Updated:
2 Feb 2007 at 14:36 UTC
Jump to comment: Most recent file
In internet explorer (6 and 7) the primary links drop off with each one a little lower than the next.
I'm not really sure why this is, but wanted to report the issue.
| Comment | File | Size | Author |
|---|---|---|---|
| #4 | style.css_4.patch | 232 bytes | Gary Feldman |
| #1 | cascading_menus.jpg | 6.1 KB | greggles |
Comments
Comment #1
gregglesHere is a screenshot. of the problem. Note that About, FAQ, Services, Contact should all be at the same height. Compare to the Leaf screenshot for comparison.
Comment #2
davemybes commentedCheck the link width. It looks like each link is 100% wide and stretches across the page, forcing the next link down a line. In the stylesheet, look for
#navigation li a:link, #navigation li a:visited {and check if width is still set to 80px. Just to check the link size, add the commandborder:1px solid red;to this declaration to see how big the links are at the moment. I like to use that border trick to see the boundaries of various elements, and its helped me solve many problems already.Comment #3
Gary Feldman commentedTry adding
float:leftto the#navigation lientry in style.css. So it should look like:Comment #4
Gary Feldman commentedAnd, in case you really need it as a patch file, here it is.
Comment #5
gregglesGary Feldman's patch in #4 works for me. Changing the status to reflect this.
Thanks, Gary!
Comment #6
askmanny commentedThanks for the fix! I tried it and it worked. The only thing in addition to it that I had to do (and this was more to move the link tabs down a bit, because they were all pushed up by about 3 pixels) was change the value for top position in this line to 131:
top: 131px;in the #navigation section of the stylesheet. Final code looked like this: