Add style to a single menu nav element
-
Hi, I have the following in the my wordpress header.php:
<?php if ( is_user_logged_in() == false) { wp_nav_menu( array( 'menu'=>'Logged-Out Menu', 'container_class' => 'menu-header', 'theme_location' => 'main-menu' ) ); } else { wp_nav_menu( array( 'menu'=>'Logged-In Menu', 'container_class' => 'menu-header', 'theme_location' => 'main-menu' ) ); } ?>
The Logged-In menu has an account page link. I want to wrap a div around the account page link so I can style it with CSS. Haven’t had any luck so far, is their a simple solution to this that I can add in the header.php?
Thanks!
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Add style to a single menu nav element’ is closed to new replies.