Hi. I am interested in tweaking Joshua Kaufman's CSS tabs GUI by, for
example, offsetting the last tab from the preceding tabs. That is,
putting a bigger space between the last two tabs so the final tab
stands slightly alone. Like this...
____ ____ ____ ____
___| aa || bb || cc |___| dd |________________
Here's the link to Joshua's source:
http://unraveled.com/projects/css_tabs/css_tabs.html
Any ideas?
motivus
Els - 28 Apr 2005 18:13 GMT
> Hi. I am interested in tweaking Joshua Kaufman's CSS tabs GUI by, for
> example, offsetting the last tab from the preceding tabs. That is,
[quoted text clipped - 8 lines]
>
> Any ideas?
Augmenting the left margin on the fourth li? (or the right margin on
the third one)

Signature
Els http://locusmeus.com/
Sonhos vem. Sonhos vão. O resto é imperfeito.
- Renato Russo -
motivus - 28 Apr 2005 21:09 GMT
Well. I guess that was obvious. I made this addition...
ul#tabnav li.tab4 {
margin-left: 3em;
}
Thanks.