Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #60911
    annebelle
    Member

    Hallo Sakin,

    I am using Catch base one column no sidebar and it is great!, but is it possible to disable search enterly and how do i do that? do i change it in css editor and .php?

    Another one is, can I adjust the overall width of the (body, wrapper) site including de header, content and footer? As for now the text in the footer aligns to much to the left and the borders are wider than de the content, i would like theme all to be 840 px but some how I can only adjust the content width….
    http://www.annebellekramer.nl/wp/
    thank you!
    Annebelle

    #60917
    annebelle
    Member

    Hallo Sakin!
    i managed to adjust the overall with by adjusting .site css style sheet!
    so only question is if it is possible to remove the search …
    thanks, greeting annebelle

    #60946
    Sakin
    Keymaster

    @annebelle: That disable search option is only there in Pro version. So, in Free version, you can either hide it from custom css. For that you can just add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:

    #search-toggle {
        display: none;
    }

    Or you can build child theme and then copy catchbase_primary_menu() to your child theme functions.php file and then remove the code

    <div id="search-toggle" class="genericon">
        <a class="screen-reader-text" href="#search-container"><?php _e( 'Search', 'catchbase' ); ?></a>
    </div>
    
    <div id="search-container" class="displaynone">
        <?php get_Search_form(); ?>
    </div>
    #61442
    annebelle
    Member

    @Sakin
    Thanks! works like a charme!
    greetings Annebelle

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘disable search in catch base’ is closed to new replies.