Hi, I'm working on a 1st year college assignment, with a hiking / camping theme.
Because it's a nature site, I'm not using any borders to speak of. However without borders the site would look very unfinished.
So I have Black background header, single cell table 'float right' (images with links running down the page) to create a right border.
I want to run a 6 tab menu down the left side but with alternating red and black colours (this creates an artificial border and matches my background image).
What I can't do is set the background colours on the html page.
Thanks in advance for your help ... phill
Code below
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
<title>The Dingle Way</title>
<link rel="stylesheet" href="newindex.css">
</head>
<ul>
<li><a href="Home.html">H o m e</a></li>
<li><a href="10 day.html">10 d a y</a></li>
<li><a href="Safety.html">S a f ety</a></li>
<li><a href="Equipment.html">E quipment</a></li>
<li><a href="Other.html">O t her</a></li>
<li><a href="Gallery.html">G a l lery</a></li>
</ul>
</div>
<div id="content">
Main Content
</div>
<!---- end navigation --->
<!---- right bar --->
<div id="rightBar">
<table width=40 height=30>
<tr>
<td><img src="phill222.jpg">
</td>
</tr>
I think I need to have the background colours here (on the html page)
<!---- navigation --->
<div id="navigation">
<ul>
<li><a href="Home.html">H o m e</a></li>
<li><a href="10 day.html">10 d a y</a></li>
<li><a href="Safety.html">S a f ety</a></li>
<li><a href="Equipment.html">E quipment</a></li>
<li><a href="Other.html">O t her</a></li>
<li><a href="Gallery.html">G a l lery</a></li>
</ul>
</div>
<div id="content">
Main Content
</div>
<!---- end navigation --->
and have
bazckground color: none
in the css page ... however ... If I can get that working (I haven't yet) ... what effect will that have on the mouse over effect??
This is for college so I have to throw in as much as possible without over complicating the issue (it's called grovelling for as many marks as possible).
Bookmarks