Bring Your Business to Life › Support › XClusive › How to remove Search and change Font
Viewing 2 posts - 1 through 2 (of 2 total)
- AuthorPosts
- August 13, 2013 at 5:27 am #54617
Sophisto
ParticipantHi
I’m currently using the Xclusive WordPress Theme and I was wondering how to remove the Search function to the right of the top navigation menu? Also, how do you change the font for the site title?
Thanks,
SAugust 14, 2013 at 2:47 pm #54644Xpark Media
KeymasterIf you are using a child theme, which we recommend, add this code to your child theme’s function.php file to remove the search form. We may add an option for this on the next release.
function xclusive_child_init_actions( ){ remove_action( 'xclusive_after_main_nav_menu', 'xclusive_search_form_main_menu'); } add_action( 'wp', 'xclusive_child_init_actions' );To change the font title, same thing in your child theme’s style.css file add the following line of code, change the font family name as needed.
div #site-title { font-family:"Arial Black", Gadget, sans-serif; } - AuthorPosts
Viewing 2 posts - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.