Hi, the following pieces of code change the default behaviour of the Customizr theme menu : 1 displays the dropdown items on hover instead of click 2 enables the click on a parent menu item It is composed of two parts that work together : a css snippet and a […]
Target: Header
Add this in your child theme’s functions.php: add_filter(‘tc_logo_text_display’, ‘your_logo_display’); add_filter(‘tc_logo_img_display’, ‘your_logo_display’); function your_logo_display($output) { return preg_replace(‘/brand span3/’, ‘brand span10 offset1’, $output, -1); }
Changing the Background to a different color, texture, pattern or image can be made to various elements: Site, Header, Navbar, Body, Footer. A useful plugin for generating patterns is: http://wordpress.org/plugins/subtle-background-patterns Where to copy/paste this code? The simplest way is to use the Custom CSS section of the customizer option screen. […]
Where to copy/paste this code? The simplest way is to use the Custom CSS section of the customizer option screen. If you have many customizations to make in CSS and PHP, then we strongly recommend you create a child theme. Everything you need to know about creating a child theme […]
Note: While this snippet is still valid for Twitter Bootstrap menu based, Customizr and Customizr-Pro now embed a new option to achieve the same result. Navigate to Appearance > Customize > Header > Navigation and you’ll find it! If you don’t want to click on the parent menu item to […]
Howdy developer, here is a quick snippet to add a button to the Customizr theme menu. Example: the green button on the demo site : http://demo.presscustomizr.com 1) I added this classes to my element in the menu (See this snippet to add classes to your WordPress Menu) free_download btn btn-mini btn-primary 2) […]