Shoutbox

Stuck on HTML - Printable Version

-Shoutbox (https://shoutbox.menthix.net)
+-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58)
+--- Forum: Skype & Technology (/forumdisplay.php?fid=9)
+---- Forum: Tech Talk (/forumdisplay.php?fid=17)
+----- Thread: Stuck on HTML (/showthread.php?tid=63051)

Stuck on HTML by welshboy222 on 07-11-2006 at 03:58 PM

Hi I would like to creat a navi bar like on this site: Sunshine's site
How would I do it ??? I have tried to find out but with no sucess!


RE: Stuck on HTML by stoshrocket on 07-11-2006 at 04:04 PM

are you using images or just plain text for the links??


RE: Stuck on HTML by welshboy222 on 07-11-2006 at 04:05 PM

Plain text at mo


RE: Stuck on HTML by stoshrocket on 07-11-2006 at 04:06 PM

check out this: http://www.w3schools.com/css/tryit.asp?filename=trycss_float5

w3 schools has helped me a hell of alot when i was learning html... if you have any trouble with understanding this then just pm me ;)


RE: Stuck on HTML by welshboy222 on 07-11-2006 at 04:08 PM

Thanks this helps a lot!


RE: Stuck on HTML by Sunshine on 07-11-2006 at 04:31 PM

From my css:

.nav {
  text-align: center;
  background-color: #0000FF;
  padding: 2px;
}

.nav a:link
{
  width:6em;
  text-decoration: none;
  color: white;
  background-color: #000099;
  padding: 2px;
  border: 1px solid #0000FF;
  border-top: 0px;
  border-bottom: 0px;
}
.nav a:visited {
width: 6em;
text-decoration: none;
color: white;
background-color: #000099;
padding: 2px;
border: 1px solid #0000FF;
border-top: 0px;
border-bottom: 0px;
}
.nav a:hover {
  background-color: #0000FF
}



Now in the page itself you do:

<div class="nav">
<a href="index.php">Home</a><all the other hrefs for the pages in a row after eachother, no <br> or spaces></div>


assuming you are using an external stylesheet (css), if not then i advice you to learn. w3schools is good to start out..it's where i learned most too
RE: Stuck on HTML by welshboy222 on 07-11-2006 at 04:33 PM

Ok thanks lissaexplains.com is good aswell but not so much info!