Deprecated: Function get_currentuserinfo is deprecated since version 4.5.0! Use wp_get_current_user() instead. in /var/www/html/wp-includes/functions.php on line 5383
I’d like to align the links in the middle menu to the right instead of the left. But dropping the text-align style in the CSS that seems to control those features isn’t doing the trick. Is there an option for this or some sneaky place I should be putting it?
The menus use float for item alignment instead of the text-align property, so if you want the middle menu items to be right-aligned, please insert the following CSS code into “style.css”: #nav-secondary ul li { float: right !important; } #nav-secondary ul ul li { float: left !important }