Link to home
Start Free TrialLog in
Avatar of jasotasticon
jasotasticon

asked on

Wordpress using .current_page_parent with nrs-folding-pagesplugin

any ideas how to activate .current_page_parent / .current_page_ancestor while using the nrs folding pages plugin? i can’t manage to use css for this and i think it’s because of the plugin..
ASKER CERTIFIED SOLUTION
Avatar of gwkg
gwkg
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of jasotasticon
jasotasticon

ASKER

yes, I have worked with these without success. Perhaps I am applying them wrong.

I only want to effect the parent of third level nav items.

I am including my code below without the .current_page_parent style
/*top menu*/
#sidebar .page_item a{font-size:18px; color:#404040; text-decoration:none;}
#sidebar .page_item a:hover{color:#006ebd;}
#sidebar .page_item.current_page_item a {color:#a1c105;}
#sidebar .page_item ul {padding-bottom:12px;}


/*second level menu*/
#sidebar .page_item .page_item a{font-size:12px; color:#c5c5c5; line-height:1.2em;}
#sidebar .page_item .page_item a:hover{color:#006ebd;}
#sidebar .page_item .page_item.current_page_item a {color:#a1c105;}
#sidebar .page_item .page_item ul {padding-bottom:4px; margin-top:4px;}

/*third level menu*/
#sidebar .page_item .page_item .page_item a{font-size:9px; color:#404040; line-height:1em;}
#sidebar .page_item .page_item .page_item a:hover{color:#006ebd;}
#sidebar .page_item .page_item .page_item.current_page_item a {color:#a1c105;}

Open in new window