Jay,
I am using Dreamweaver to create and edit the CSS file, however I am writing it directly as apposed to getting DW to write it for me.
There is a lot in it at the moment while trying to get things functional and then it is a case of removing the poarts which as you have said are redundant.
I am already looking at removing the following fromt he CSS file, but am unsure if it is going to create a problem.
.nav ul {
margin: 0;
}
.nav ul li {
margin: 0;
display: inline;
list-style: none;
}
.nav ul li a {
padding-top: 2px;
padding-bottom: 2px;
display: block;
padding-left: 7%;
border-bottom: 1px solid #BBBEAB;
border-top: 1px solid #D2D3C6;
color: #1E2B31;
text-decoration: none;
display: inline-block;
height: 100%;
list-style: none;
}
.nav ul li a:hover {
background-color: #D1D3C3;
list-style: none;
}
I will have to keep the following though due to the way I do add some things to the site and will carry on to add things to the site.
#fullnav a {
padding-top: 2px;
padding-bottom: 2px;
display: block;
padding-left: 7%;
border-bottom: 1px solid #BBBEAB;
border-top: 1px solid #D2D3C6;
color: #1E2B31;
text-decoration: none;
}
#fullnav a:hover {
background-color: #D1D3C3;
}
#fullnav ul {
list-style: none;
margin: 0;
padding: 0;
}
Going on what we have just done above I am assuming that I could use the same principle to create a horizontal menu?
Something like err;
#topnav ul {
list-style: none;
margin: 0
padding-left: 0
padding-right : 50px;
align: right;
}
#topnav li {
color: #777777
display: block;
float: right;
}
#topnav li a {
text-decoration: none;
padding-left: 5px;
padding-right: 5px;
}
#topnav li a:hover {
text-decoration: underline;
color: #ffffff;
}
#topnav li a.current {
color: #ffffff;
}
Or am I wrong ?