http://vosburghrealty.com/home-search/
When it’s on the page, the footer menu has the text sitting left of the menu and up a bit. I would like the current page menu item, “home search” in this case aligned with “success stories” above it, and level with “why vosburgh.” I think the current menu item css is causing it to sit funny, but I can’t seem to figure out how to change it.
Thanks for your time– I think this is the last thing we’ll be doing to this site. :)
Angie
Hi Angie!
This will fix it:
#footer .widget_nav_menu ul:first-child>.current-menu-item, #footer .widget_nav_menu ul:first-child>.current_page_item, #footer .widget_nav_menu ul:first-child>.current-menu-ancestor {
left: 0 !important;
}
Best regards,
Josue
Thank you for this! The margin on the current menu item in the footer is still acting strange… I tried applying a top: 0 !important; to the code you sent just now, but each of the menu items in the footer still move up when I visit the corresponding page. Thank you for your help. :)
Hi!
Change the code to:
#footer .widget_nav_menu ul:first-child>.current-menu-item, #footer .widget_nav_menu ul:first-child>.current_page_item, #footer .widget_nav_menu ul:first-child>.current-menu-ancestor {
left: 0 !important;
top: 13px !important;
}
Regards,
Josue