Greetings:
I need to change the style of one header only in a top level menu leaving the other headers as is. I have created the new style but I can't remember how to code it so only this one header uses the new style.
Here is what I am trying but it is not working. Help apreciated:
aI("text= Warranty;url=/corporate/warranty.html;");
aI("text= Contact Us;url=/corporate/contact.html;");
aI("text= (865) 609-8187;style=boldMenuStyle;type=header;");
<boldMenuStyle> is the name of my new style.
Thanks in advance.
Rip
Please refresh my memory...in line style change?
I don't know what is in the boldMenustyle, but you can put certain style changes in the aI string. i.e.
Ruth
Code: Select all
aI("text= (865) 609-8187;headerbgcolor=#ff0000;headercolor=#000000;
fontweight=bold;type=header;");
Hi Rip,
Nice to see that you're still using Milonic Menus.
Here's another thought:
If boldMenuStyle is actually a defined CSS class, e.g.
then you could apply it to the item using the onclass and offclass item properties, like so:
I guess it really depends on what exactly your "boldMenuStyle" is...
Cheers,
Kevin
Nice to see that you're still using Milonic Menus.
Here's another thought:
If boldMenuStyle is actually a defined CSS class, e.g.
Code: Select all
<style>
.boldMenuStyle {
your
CSS
code
}
</style>
Code: Select all
aI("text=Item Text;type=header;onclass=boldMenuStyle;offclass=BoldMenuStyle;");
Cheers,
Kevin