Tea
Storage? I am Storage!
Help!
Tannin is away and he's left me here all on my own to figure out how to code a web page (one that he rather foolishly volunteered to do for a local landcare group). The thing is, the design is more-or-less fixed. I have PDF mockups of a half-dozen example pages, and my job is simply to translate those mockups into real, live HTML code.
I've knocked most of it over. Tthe fundamentals at any rate. I won't get the actual text and scanned graphics for illustrations for a few days yet, but that's no problem. Once the basic code is up and running (as most of it is already) it's just a matter of pasting the text and images in and letting the CSS do its magic.
But this bit is giving me trouble.
That's the right-hand half of the top of a page. I need to have the two lines(they symbolise the watercourse that the landcare group exists in order to restore) just wander unobtrousively over the pages here and there, exactly as you see above.
At present, the horizontal menu bar is just created with CSS.
#hornav {
position: absolute;
top: 174px;
left: 0;
height: 30px;
width: 100%;
border: none;
margin: none;
padding: 6px 0 0 0;
font-weight: bold;
color:white;
background-color:#6d6e71;
}
#hornav a:link { color: #dbcda4;}
#hornav a:visited { color: #dbcda4;}
#hornav a:active {color: red;}
#hornav a:hover { text-decoration: underline;}
Most of the rest of the page is done in much the same way.
How do I get the creek to overlay the nav bar?
I can create a PNG or JPG to show the creek easily enough (just a screencap) but I don't know anything about making transparent GIF or PNG files.
Tannin is away and he's left me here all on my own to figure out how to code a web page (one that he rather foolishly volunteered to do for a local landcare group). The thing is, the design is more-or-less fixed. I have PDF mockups of a half-dozen example pages, and my job is simply to translate those mockups into real, live HTML code.
I've knocked most of it over. Tthe fundamentals at any rate. I won't get the actual text and scanned graphics for illustrations for a few days yet, but that's no problem. Once the basic code is up and running (as most of it is already) it's just a matter of pasting the text and images in and letting the CSS do its magic.
But this bit is giving me trouble.
That's the right-hand half of the top of a page. I need to have the two lines(they symbolise the watercourse that the landcare group exists in order to restore) just wander unobtrousively over the pages here and there, exactly as you see above.
At present, the horizontal menu bar is just created with CSS.
#hornav {
position: absolute;
top: 174px;
left: 0;
height: 30px;
width: 100%;
border: none;
margin: none;
padding: 6px 0 0 0;
font-weight: bold;
color:white;
background-color:#6d6e71;
}
#hornav a:link { color: #dbcda4;}
#hornav a:visited { color: #dbcda4;}
#hornav a:active {color: red;}
#hornav a:hover { text-decoration: underline;}
Most of the rest of the page is done in much the same way.
How do I get the creek to overlay the nav bar?
I can create a PNG or JPG to show the creek easily enough (just a screencap) but I don't know anything about making transparent GIF or PNG files.