View Full Version : Navigation


Mrs Barrett
02-05-2006, 06:55 PM
ok I am after a fancy navigation on my first page with each link going to another page....how can I do this pls ???

RdSoxFan618
02-06-2006, 10:11 PM
Okay, so you want fancy pictures to click on to bring you to another page???

Please fix this if this is wrong somebody,

<a href="your url here.com/the page you want it to go to here.htm><img src=yourimagehere.gif (or JPEG)> border="0,1,2,3,4,5 (Pick which one)"</a>

Mandalay92
02-06-2006, 10:15 PM
If you just want text links, though, you just do <a href="Website URL goes here">Link name here</a>. For an image link, that code is pretty much right, except it would be <a href="URL"><img src="image URL here" border="number here, 0 would make it have no border"></a>. Pretty close, it was just missing some quotes, and one of the brackets was in the wrong place. I hope that helped!

shygirl1999
02-07-2006, 02:02 AM
what kind of navigation are you looking for? image maps, regualr links, link styles, php navigations?

the regular basif html links is this:
<a href="LINK HERE">TEXTHERE!</a>

or if its going to a new window:
<a href="LINK HERE" target="_blank">TEXTHERE!</a>

shygirl1999
02-07-2006, 02:05 AM
Okay, so you want fancy pictures to click on to bring you to another page???

Please fix this if this is wrong somebody,

<a href="your url here.com/the page you want it to go to here.htm><img src=yourimagehere.gif (or JPEG)> border="0,1,2,3,4,5 (Pick which one)"</a>

good, but you didnt close the tags right...

<img src="image.gif(or).jpg" border="#" alt="">
common mistake when your typing fast, i know ^_^

Mrs Barrett
02-07-2006, 10:04 PM
something different yet stylish

Thanks

shygirl1999
02-07-2006, 11:44 PM
something different yet stylish

Thanks

something like this:

<style type="text/css">
A:link { font-family: verdana; text-decoration: underline; color: #000000;}
A:visited { font-family: verdana; text-decoration: underline; color: #000000;}
A:active { font-family: verdana; text-decoration: none; color: #000000;}
A:hover { font-family: verdana; background: #000000; text-decoration: none; color: #000000; cursor: crosshair;}
</style>

and you just replace the black with your color...?

Mrs Barrett
02-08-2006, 07:42 PM
do i use the whole code plz?