How to remove Search and change Font

HomeSupportXClusiveHow to remove Search and change Font

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #54617
    Sophisto
    Participant

    Hi

    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,
    S

    #54644
    Xpark Media
    Keymaster

    @Sophisto,

    If 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; }

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.