
Originally Posted by
Smuj56
... my college tutor dosnt teach it just now.
<rant>Excuse me? Where did they dig him up from? 1996?? That is disgraceful!</rant>
Anyhoo, you'll probably have to do some background reading as well (oh and maybe change college courses).
The way I'd tackle that menu is to create an unordered list in HTML;
Code:
<ul id=nav>
<li>Home</li>
<li>About Me</li>
<li>Gallery</li>
<li>Services</li>
<li>Contact Me</li>
</ul>
Then remove the text from your nav bar image so you are left with just the background. Set that image as the background to the nav id with CSS.
Display the li tags inline so that they line up next to each other (default is display: block;) and then use the link pseudo classes (link, visited, hover, active) to set the link colour text as green and no underline (default is blue and underlined). Then set a rollover colour on hover and active.
Set some margin and padding on the li tags so they space out nicely and you are done.
Before doing much more you need to get a really good grasp of how to use CSS and HTML to create a website. If your school won't teach you then get on W3 and do some reading/playing/learning; W3Schools Online Web Tutorials
Let us know how you progress.