To give you a better idea of what i mean i have included the following address: http://www.projectseven.com/tutorials/c ... /index.htm
The css i am using is:
Code: Select all
/* Styling the basic apperance of the menu elements */
#primary-nav a {
display: block;
padding: 5px 10px;
margin: 0px;
background-image: url(images/nav_normal.gif);
background-repeat: no-repeat;
color: #606a70;
text-decoration: none;
background: transparent;
min-height:1em; /* Fixes IE7 whitespace bug*/
}
#primary-nav li, #primary-nav li.menuparent {
background-color: #fff;
min-height:1em; /* Fixes IE7 bug*/
}
/* Styling the basic apperance of the active page elements (shows what page in the menu is being displayed) */
#primary-nav li.menuactive {
background-image: url(images/nav_over.gif);
background-repeat: no-repeat;
}
/* Styling the basic apperance of the menuparents - here styled the same on hover (fixes IE bug) */
#primary-nav li.menuparent,
#primary-nav li.menuparent:hover,
#primary-nav li.menuparenth {
background-image: url(images/cms/arrow.gif);
background-position: center right;
background-repeat: no-repeat;
}
/* Styling the apperance of menu items on hover */
#primary-nav li:hover,
#primary-nav li.menuh,
#primary-nav li.menuparenth,
#primary-nav li.menuactiveh {
background-image: url(images/nav_over.gif);
background-repeat: no-repeat;
}