Navbar menu not spanning full width of header
-
Hi,
On a sandbox site which I use to work through things before going live I updated Customizr to the latest version..I’m using a child theme I made and focused on centering the logo and having the navbar span the header.
After updating, the navbar only spans 9 and not 12 columns. I had a function that addressed this.
The site is: https://www.artdesignsneed.com/newboxffg/
Code:
<?php add_filter('tc_navbar_display', 'remove_span9_navbar_display'); function remove_span9_navbar_display($output) { return preg_replace('/navbar-wrapper clearfix span9/', 'navbar-wrapper clearfix', $output); } ?>
I tried using the updated hook of tc_new_menu_view but that didn’t work.
Would you know which hook I could use to help change the navbar span9 to span12?
Help would be awesome! Thanks so much!!
Michael
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Navbar menu not spanning full width of header’ is closed to new replies.