Lost responsiveness on navbar
-
I am extremely new to all of this (day 4), so please keep this in mind. I am working with a child theme and the site is not public yet.
I changed the widths of my logo and navbar to span4 and span8 respectively (see code below for reference). When resizing my browser, I have lost responsiveness of the navbar between 767 and 979 px. I tried to fix this in the stylesheet but apparently am not making the proper arguments. Any assistance would be greatly appreciated.
code below:
/* CHANGE LOGO AND NAVBAR WIDTHS */ add_filter('tc_navbar_display', 'new_navbar_display'); function new_navbar_display($output) { return preg_replace('|navbar-wrapper clearfix span9|', 'navbar-wrapper clearfix span8', $output); } add_filter('tc_logo_text_display', 'new_brand_display'); add_filter('tc_logo_img_display', 'new_brand_display'); function new_brand_display($output) { return preg_replace('|span3|', 'span4', $output); }
Thank you.
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Lost responsiveness on navbar’ is closed to new replies.