[Wolves] web site help please

Stuart Langridge sil at kryogenix.org
Tue Dec 6 06:44:34 GMT 2005


On 12/5/05, David Morley <davmor2 at gmail.com> wrote:
> I would like to drop a nice but basic bar of blue across the top off
> my web pages to use as a link bar but I'm not sure how can someone
> please point me in the right direction.  As I'm not entirely sure what
> I should look it up under.

You need to learn a bit about CSS. A pointer to get you going in the
right direction:

Add this to the page header (between <head> and </head>)
<style type="text/css">
div#headerbar {
  position: absolute;
  border: 0;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 2em;
  color: white;
  background: #00f;
}
</style>

And add this to the body of your page:
<div id="headerbar">
Here's a link, and here's another.
</div>

To understand what that all means, you need to be reading about CSS.
Try w3schools, or there are plenty of books.

Aq.



More information about the Wolves mailing list