is there a way to define pagematch highlighting styles?
i've got pagematch turned on, but instead if setting the menu item to the "ON" (different background and font colors) state it's just changing the font color.
EDIT: figured it out, pagecolor and pagebgcolor were the properties i needed.
defining pagematch styles? {SOLVED}
Hi,
You could try using pageclass and declare a CSS class.
Something like this:
in your style add:
And then in your css style sheet add:
Hope this helps,
Andy
You could try using pageclass and declare a CSS class.
Something like this:
in your style add:
Code: Select all
pageclass="myclass"
Code: Select all
.myclass{
background-image: url("/images/bgimage.gif");
}
Andy