Boost logo

Boost :

From: Eric Niebler (eric_at_[hidden])
Date: 2004-12-02 03:07:58


Daryle Walker wrote:
>
> I made a trial version of such a while ago. It's in the Sandbox under
> "ROOT/more/version_history.html".
>
> The list at the top of the file looks weird, but I'm want to implement it as
> a horizontal list through CSS. Anyone know how? (I've tried to look at how
> professional sites, like Mozilla, do it, but they scatter the code over
> several CSS files, making it too obtuse for me to discover.)
>

In the same directory as version_history.html, make version_history.css
and put this in there:

@import url("../boost.css");

#header img
{
     float: left;
}
#header ul
{
     text-align: right;
     list-style-type: none;
     white-space: nowrap;
}
#header ul li
{
     display: inline;
     padding-left: 2em;
}
#main_body
{
     clear: left;
     padding-top: 1em;
}

Then make version_history.html use your new CSS.

HTH!

-- 
Eric Niebler
Boost Consulting
www.boost-consulting.com

Boost list run by bdawes at acm.org, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk