I changed the background color in my menu but one item is a different color that I don't see listed in the javascript. The second page I inserted the menu on, a different item is a strange color. What am I missing?
Here is the link to the first page I put the menu on:
http://www.carteretcountyschools.org/mms
If you look closely, you'll see that the "Home" button is a different color blue than the rest of the bar.
Here is the link to the second page I inserted the menu on:
http://www.carteretcountyschools.org/mm ... edules.htm
Now you see the "About MCMS" button is a different color blue than the rest of the bar but the "Home" button is fine.
Here is how I have altered the javascript:
bordercolor="#000066";
borderstyle="solid";
borderwidth=1;
fontfamily="Verdana, Tahoma, Arial";
fontsize="75%";
fontstyle="normal";
headerbgcolor="#CC1100";
headercolor="#CC1100";
offbgcolor="#9DB9E1";
offcolor="#000000";
onbgcolor="#A80000";
oncolor="#FFFFFF";
outfilter="randomdissolve(duration=0)";
overfilter="Fade(duration=0.2);Alpha(opacity=95);Shadow(color=#777777', Direction=135, Strength=4)";
padding=5;
pagebgcolor="#82B6D7";
pagecolor="black";
separatorcolor="#000066";
separatorpadding=5;
separatorsize=1;
subimage="altmenu/arrow.gif";
subimagepadding=7;
}
Any help would be appreciated!
Strange background color
Really strange. I took your code from http://www.carteretcountyschools.org/mms and put it on one of my servers, making no changes at all. The funny blue, which I can see from the links you posted, is no longer there! http://www.west.asu.edu/sa/testsite/. Maybe Ruth can figure this one out.
John
Hi,
It's your pagebgcolor which is making the Home item a different color. Same thing happens when you go to the other page because the page matches the item. The reason it is not covering what seems to be the 'full' item is that you have a 5px margin set in the menu so the pagebgcolor only covers the item minus the 5px top, right, bottom, left.
Ruth
It's your pagebgcolor which is making the Home item a different color. Same thing happens when you go to the other page because the page matches the item. The reason it is not covering what seems to be the 'full' item is that you have a 5px margin set in the menu so the pagebgcolor only covers the item minus the 5px top, right, bottom, left.
Ruth
Hi,
The 5px margin doens't have anything to do with the color. It will take either the menubgcolor, or if that is not given, then it assumes the offbgcolor. You can make the pagebgcolor anything you want. Some people eliminate that and use only pagecolor which only changes the font color when you're on the related pages. Or they use only pagecolor and pageborder. For example, you could make pagecolor="#ffffff"; and add pageborder="3px double #ffffff"; That would make the font color white when you're on the related page and the are that is now that different blue would have a double border around that area but since you don't have pagebgcolor listed it would be the same bgcolor as offbgcolor.
Ruth
The 5px margin doens't have anything to do with the color. It will take either the menubgcolor, or if that is not given, then it assumes the offbgcolor. You can make the pagebgcolor anything you want. Some people eliminate that and use only pagecolor which only changes the font color when you're on the related pages. Or they use only pagecolor and pageborder. For example, you could make pagecolor="#ffffff"; and add pageborder="3px double #ffffff"; That would make the font color white when you're on the related page and the are that is now that different blue would have a double border around that area but since you don't have pagebgcolor listed it would be the same bgcolor as offbgcolor.
Ruth