Forum Replies Created

Viewing 20 posts - 11,261 through 11,280 (of 14,509 total)
  • Author
    Posts
  • in reply to: Spacing in comments #12319
    Sakin
    Keymaster

    @Printsev: I don’t get it what you mean, Can you send me the screenshot and also your site url?

    in reply to: Featured slider covers drop down nav menu #12318
    Sakin
    Keymaster

    @rdorrego: Just add the following CSS in “Appearance => Theme Options => Custom CSS” box.
    #branding { z-index: 10; }

    in reply to: Adding phone number and email near the logo #12317
    Sakin
    Keymaster

    @Cherry: You can add that in Catch Everest Pro by adding in the widget in Header Top sidebar. There is not option in free theme. There is one trick, you can add the phone, email and logo in the same image.

    in reply to: Prevent Slider Post Featured Image URL #12316
    Sakin
    Keymaster

    nice 🙂

    in reply to: Header Image only on Homepage #12311
    Sakin
    Keymaster

    @adasprom: Yes, we have found issue in Featured Header Image options, which is schedule to be fixed in version 1.4. For now you can add above css or you can go to your file catcheverest-functions.php and in line no 358 replace the following code

    elseif ( $enableheaderimage == 'allpage' || ( $enableheaderimage == 'homepage' && ( ( is_front_page() || ( is_home() && $page_for_posts != $page_id ) ) && $enableslider == 'enable-slider-homepage' ) ) ) {
        catcheverest_featured_image();
    }

    With

    elseif ( $enableheaderimage == 'allpage' || ( $enableheaderimage == 'homepage' && ( is_front_page() || ( is_home() && $page_for_posts != $page_id ) ) ) ) {
        catcheverest_featured_image();
    }
    in reply to: Eliminate Blanks #12309
    Sakin
    Keymaster

    @Bill Pagonas: I am confused about what you want to do with the menu. Can you send me your design screenshot. Just upload the design image anywhere in your site or photo sharing site and then send me the url of the design.

    in reply to: Spacing Issues #12308
    Sakin
    Keymaster

    @Jodi: It’s not double spacing. It’s the margin that is used for different screen size.

    You can adjust it by reducing the margin and add the following css in “Appearance => Theme Options => Custom CSS” box.

    /* For screen size 1000px and above */
    @media screen and (min-width: 1000px) {
    p { margin-bottom: 40px; }
    }
    in reply to: Spacing Issues #12289
    Sakin
    Keymaster

    @Jodi: It same like spacing. I don’t see issue with it. Catch Everest theme is designed that way. You can see demo at http://catchthemes.com/demo/catch-everest/

    in reply to: Header Background Image #12280
    Sakin
    Keymaster

    @Marianne: Your site is different so it will be as below.

    #header {
        background: none #fff;
    }
    in reply to: Centering menu bar #12279
    Sakin
    Keymaster

    @dfranck90: I see that you have added lot of css. So, I cannot tack back all. But can you try adding in the following css.

    #header #mainmenu ul {
        margin: 0;
        padding-top: 2px;
        text-align: center;
    }
    #header #mainmenu ul li {
        display: inline-block;
        float: none;
        text-align: center;
    }
    #header #mainmenu ul li a {
        border-bottom: 10px solid #fff;
    }
    #header #mainmenu ul ul li a {
        border-bottom: none;
    }
    in reply to: SLIDER HELP – Link to Page, not Post #12278
    Sakin
    Keymaster

    @Oceani5: See the screenshot of Featured Slider options in Catch Everest Pro http://pinterest.com/pin/548594798329509357/

    in reply to: Header Background Image #12273
    Sakin
    Keymaster

    @lcoutlaws: If you want to change in to color then you can add the following CSS in “Appearance => Theme Options => Custom CSS” box.

    #branding {
        background: none #fff;
    }

    But if you want different image then you need to add the image url as the following css.

    #branding {
        background: url("Here enter you full image url") repeat scroll 0 0 transparent;
    }
    in reply to: Eliminate Blanks #12271
    Sakin
    Keymaster

    @Bill Pagonas: it has to be display inline and float left.

    #navmenu li {
        display: inline;
        float: left;
    }
    in reply to: Change background color of search widget #12270
    Sakin
    Keymaster

    @iceman027: I see that you have added background color for your widget in you Custom CSS box twice. I see the following CSS. Why did you added 2 times.

    .widget {
       background-color : #004000;
    }
    .widget {
       background-color: #004000;
       color: #e0b303;
    }

    For search box at header right background. You can add the following css.

    #sidebar-header-right .widget_search {
        background-color: #e0b303;
    }
    in reply to: Remove Page Titles #12269
    Sakin
    Keymaster

    @barneycat25: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box to hide the page title.
    .page .entry-header .entry-title { display: none; }

    in reply to: Header Image only on Homepage #12268
    Sakin
    Keymaster

    @adasprom: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box to show header only in homepage.

    #hgroup-wrap { display: none; }
    .home #hgroup-wrap { display: block; }
    in reply to: error in one of the files #12267
    Sakin
    Keymaster

    @thorslev: Maybe your download is not completed. So, re-download it and upload it. If problem still exist then let me know it. I will contact you through email

    in reply to: error in one of the files #12266
    Sakin
    Keymaster

    @thorslev: Maybe your download is not completed. So, re-download it and upload it. If problem still exist then let me know it. I will contact you through email.

    in reply to: error in one of the files #12265
    Sakin
    Keymaster

    @thorslev: Maybe your download is not completed. So, re-download it and upload it. If problem still exist then let me know it. I will contact you though email.

    in reply to: How to center header #12264
    Sakin
    Keymaster

    @pohl: It is not enough with float none. You can add the following CSS in “Appearance => Theme Options => Custom CSS” box

    .logo-wrap {
        float: none;
        text-align: center;
        width: 100%;
    }
Viewing 20 posts - 11,261 through 11,280 (of 14,509 total)