Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

HTML Forum


You are currently viewing our HTML Forum as a guest. Please register to participate.
Login



Post a Project »

Find a Professional HTML Freelancer!

Find a Freelancer to help you with your HTML projects

FREE Outsourcing eBook!

Reply
How to create a top navtable
Old 10-30-2010, 04:27 AM How to create a top navtable
Banned

Posts: 408
Name: mushget
Trades: 0
<table id="navtable">
<tr>
<td align="left"><a href="home.html">HOME</a></td>

</tr>
<tr>
<td align="left"><a href="profile.html">Profile</a></td>
</tr>
<tr>
<td align="left"><a href="contacts.html">Contacts</a></td>
</tr>
<tr>

<td align="left"><a href="events">Events</a></td>
</tr>
<tr>
<td align="left"><a href="sponsers">Sponsers</a></td>
</tr>
</table></td>

Instead of the navtable being at the left of my page I want it to be at the top of my page going across the page underneath the header. If somebody could help me with this ASAP I would be extremely grateful.

Thank You
mushget is offline
Reply With Quote
View Public Profile Visit mushget's homepage!
 
 
Register now for full access!
Old 10-30-2010, 06:04 AM Re: How to create a top navtable
Super Moderator

Posts: 1,584
Location: Kokkola, Finland
Trades: 1
you should be using css and hopefully a list for links, not using tables for layout
have a read through these (should answer your colour question too) http://www.htmldog.com
http://www.opera.com/company/education/curriculum/
http://www.w3schools.com/
http://www.cssbasics.com
http://www.sitepoint.com/article/htm...ginners-guide/
http://net.tutsplus.com/tutorials/ht...ode-your-first -website-in-easy-to-understand-steps/
davemies is offline
Reply With Quote
View Public Profile Visit davemies's homepage!
 
Old 10-30-2010, 08:27 AM Re: How to create a top navtable
Junior Talker

Posts: 2
Name: Josh
Trades: 0
Hello,

Not sure if you were able to solve your problem using the links provided by "davemies" I agree with him 100% - you should use css & list items for your navigation. Sample code below ( The Nav is not very pretty, I just created this so you could get the idea:

<html>
<head>
<style type="text/css">

.nav{
height:50px;
background-color:#83AABF;
}
.nav ul{
padding-top:15px;
}
.nav li{
list-style:none;
display:inline;
margin-right:0px;

}
.nav li a{
color:#fff;
font-size:18px;
text-decoration:none;
border:thin solid #fff;
padding:10px;
}

</style>

</head>
<body>
<div class="nav">
<ul>
<li><a href="#">Link 1</a></li>
<li><a href="#">LInk 2</a></li>
</ul>
</div>
</body>
</html>

Hope this helps...
__________________
I'm always available to assist. PM me with any questions...

Josh
ebiz_helper is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to How to create a top navtable
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.35621 seconds with 12 queries