I guess this must have been addressed before, if anyone can point me in the right direction?
You have a basic Bochure page menu:
And you want the link for the page that is being viewed to be highlighted/ have a different bgimage, whatever so you have a class="selected"
What condition do you have to put round the class="selected"?
I tried copying the Brochure page name into page title and having the condition
But no joy.
Any clues?
Thanks
You have a basic Bochure page menu:
Code:
<actinic:block type="BrochurePagesList" > <ul> <li><actinic:variable name="BrochurePageLink" value="Simple Brochure Page Link" /></li> <ul> </actinic:block>
Code:
<ul> <li class="selected"><actinic:variable name="BrochurePageLink" value="Simple Brochure Page Link" /></li> <ul>
I tried copying the Brochure page name into page title and having the condition
Code:
<actinic:variable name="BrochureName" /> == <actinic:variable name="PageTitle" />
Any clues?
Thanks
Comment