Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #2688
    CCR2P
    Member

    Hi there,

    I am using Catch Box Pro and I have two questions.

    1. I need to move the default search bar enabled in my heading up about 5px. How can I do this?

    2. As well, I am using the following image as my header: http://img27.imageshack.us/img27/8095/finalccr2plogoheaderv3.jpg

    If I want the “ribbon” (blue and white background) to continue across the screen similar to how http://catchthemes.com/ looks (ie. the header background (the grey part) continues off the screen), how can I do this?

    Thank you in advance,

    Patrick

    #2689
    CCR2P
    Member

    As well, how do I disable the search bar in the header but ONLY for mobile versions? The search bar blocks my logo in a mobile version.

    Finally, is there a way to configure the site as “full site” when navigating on the mobile (as the mobile version is different)? Can I add a link to this effect?

    #2752
    Sakin
    Keymaster

    @CCR2P: You can add the following CSS in “Custom CSS” box in Theme Option under Appearance tab in your WordPress Dashboard.

    /* For header search bar: */
    #branding #searchform {
    top: 2em;
    }
    /* For background image. You can add like below: */
    body {
    background: url("http://img27.imageshack.us/img27/8095/finalccr2plogoheaderv3.jpg") no-repeat scroll 0 0 transparent;
    }
    /* For hiding header search box in mobile devices */
    @media screen and (max-width: 479px) {
    #branding #searchform {
    display: none;
    }

    #4123
    thess
    Member

    Can I also use this codes in the simple catch theme? I tried using

    /* For header search bar: */
    #branding #searchform {
    top: 2em;
    }

    but it doesn´t work. The search bar in the header is still there…

    #4129
    Sakin
    Keymaster

    @thess: Please post on Simple Catch Forum and then also add in your Site URL.

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Search Bar Spacing on Header’ is closed to new replies.