View Single Post
01-06-2006, 10:31 PM
#3
nah is offline nah
Status: Junior Member
Join date: Dec 2005
Location:
Expertise:
Software:
 
Posts: 35
iTrader: 0 / 0%
 

nah is on a distinguished road

  Old

Ok thanks for the help,

One more question though

For my webpage iam using a table structure instead of using div's, iam having a problem inserting by navigation links though.

I insert the code into the table but when I view it in the design mode nothing shows up.


Here is the button code:

HTML Code:
<style type="text/css">
ul#catlist {
  background: #DCDBDB;
  list-style: none;
  margin: 0 0 2em 0;
  padding: 0;
  width: 170px;
}
#catlist a {
  display: block;
  width: 170px;
  height: 1em;
  border:1px solid #DCDBDB;
}
#catlist a:hover {
  background: #d0d0d0;
  border:1px solid #B9B9B9;
}

</style>
The code for the list:
HTML Code:
<ul id="catlist">
<b><i><font face="Arial" size="2">
Home</font></i></b>
<li><a href="">link</a></li>
<li><a href="">Link</a></li>
</ul>