Hi Imar,
I have a little problem

. Just when I thought I was getting the hang of setting up menus, I ran into a snag!
I have two websites I am working on. One called
ascusct.com and the other called
home-remake.com. In the Ascus website, which I did first, I was able to get the menus to look exactly the way I want them to look. In the Home-Remake website all the menu components are working except for the changing of the text color when you hover over the static menu items or the selected items. I printed out the css file for Ascus and compared it to the Home-Remake css file. They look similar with the exception of the colors used.
Attached is the code in the css file for the menus. Also, I have not set the backcolor or forecolor in any of the VWD properties
Code:
#MenuWrapper
{
/*
The menu spans the page width, right below the header.
At the top and left a few pixels padding is applied to create some room.
*/
background-color: #8c6e23;
background-image: url('Images/MenuBackground.jpg');
width: 827px;
height: 27px;
padding-top: 7px;
padding-left: 17px;
}
#MenuWrapper a
{
/*
Links in the Menu are white. This gets overriden by styles in chapter 7.
color: #fff;
*/
}
.MainMenu
{
/*
color: #EFE1BF;
*/
background-color : #8C6E23;
width: 414px;
height: 19px;
font-size: 12px;
}
.StaticMenuItemStyle, .StaticMenuItemStyle a
{
/*
Static mouse Main menu definitions
font-size: 12px;
*/
color: #efe1bf;
font-weight: bold;
text-decoration: none;
padding-left: 5px;
padding-right: 5px;
}
.StaticHoverStyle, .StaticSelectedStyle
{
/*
background-color: #645019;
*/
color: #C8AD75;
}
.DynamicMenuItemStyle
{
/* */
font-size: small;
color: #645019;
background-color: #E4cB8F;
padding: 4px 2px 4px 3px;
}
.DynamicHoverStyle
{
/* */
background-color: #EFE1BF;
color: #000000;
}
.DynamicHoverStyle a
{
/* */
background-color: #EFE1BF;
color: #8C6E23;
text-decoration: none;
}
I've tried several combinations of things except the correct one to get it to work. Unfortunately for me, I do not know the correct one. If you have the time you can go to either of the website I mention above to see what I am talking about.
Any ideas.
Fred Rosado