Hey,
I generally start out with the Basic theme when developing new themes. It is a great theme! Thanks for releasing it.
One thing I have found that needed a bit of work was the tabs. As you may know, in FireFox 3 (maybe 2 as well), the line that runs across the bottom of the UL is spaced about 15px or so away from the tabs themselves. This is not a big deal to most people, myself included, however I did decide to try to find a fix and report it to you.
Setting the UL to display: block; in tabs.css on line 24 (or thereabouts) seems to fix the issue.
ul.primary , ul.secondary{
display:block; <--- IS IGNORED BY FFX (dunno why)
width:99%;
}
ul.primary {
margin: 0;
padding: 0 0 0 10px;
border-width: 0;
list-style: none;
white-space: nowrap;
line-height: normal;
background: url(images/tabs/tab-bar.png) repeat-x left bottom;
display: block; <--- FIXED (NOT IGNORED)
}
I realize that the selector directly above also sets the ul to display block however it does not seem to take. It seems as though ( ul.primary , ul.secondary{ ) is ignored by FFX... Not sure why. You might think about adding the properties in the ( ul.primary , ul.secondary{ ) selector into the individual .primary and .secondary selectors. If you don't fix it thats ok. It is easy enough to fix on my end...
Thanks.
Comments
Comment #1
SteveK commentednot sure what this is...
Comment #2
derekwebb1 commentedNo, problem. I can fix it each time I use it without too much issues. Eventually it will be fixed anyway. Some day try FFX3 to take a look at the tabs though. Then you will "Know what it is"...
Cheers, Derek