help with navigation bar...

liunx

Guest
I've been working with html/css for about a year or so...and I am learning a lot. I'm hoping someone here can help me. <br />
<br />
I need a navigation bar similar to the one on this website:<br />
<br />
<!-- m --><a class="postlink" href="http://www.whitebrookfarm.com">http://www.whitebrookfarm.com</a><!-- m --> <br />
<br />
All I need is a narrow bar like that one on the top of my page. It has to be centered, and I would like to learn how to make the corners round (like the gray one on this site: <!-- m --><a class="postlink" href="http://www.webclumsy.com">http://www.webclumsy.com</a><!-- m -->). I found a better example on another site, but I forgot which one, so this is the best I could come up with. <br />
I really like the drop down on mouse-over style, but I've never learned the code for it. <br />
Anyone care to help?<!--content-->www.dhtmlcentral.com look for coolmenus<br />
<br />
the only way to do round corners is by having images, css can't do it.<!--content-->I also dont believe you can make round corners without images. To make a simple navbar in html, try this:<br />
QUOTE]<br />
<center><table border="1" width="80%"><br />
<tr><!-- Row 1 --><br />
<td>link 1</td><!-- Col 1 --><br />
<td>link 1</td><!-- Col 2 --><br />
<td>link 1</td><!-- Col 3 --><br />
<td>link 1</td><!-- Col 4 --><br />
<td>link 1</td><!-- Col 5 --><br />
</tr><br />
</table></center><br />
[/QUOTE] <br />
of course you play with the borders or get rid of them, set background color and play with the placement of the link in the cell. I have the width set at 80% you may prefer pixels.<br />
I hope that helps<!--content-->
 
Back
Top