Forum Replies Created

Viewing 20 posts - 11,241 through 11,260 (of 14,501 total)
  • Author
    Posts
  • Sakin
    Keymaster

    @acanthuroid: Then you can use css to hide the featured image in the category.

    in reply to: Post a Video to home page #12336
    Sakin
    Keymaster

    @FlatsPirate: Sorry that option is no there in Simple Catch Free Theme. This theme uses the excerpt text, title and the featured image of the post.

    You need to build child theme and then customize it by replacing excerpt with full content.

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

    @rdorrego: You can delete the old css that I gave you and add the following css.

    #branding { z-index: 25; }
    #nav-slider .nav-previous, #nav-slider .nav-next { z-index: 20; }
    in reply to: How to center header #12331
    Sakin
    Keymaster

    @pohl: When I check in your site I only see the following css in your custom css box.
    .logo-wrap { float: none; }

    Please add the css that I gave you in replace of your old custom css.

    If you have added that and still not showing then make sure you have clear your cache in setting of WP-Cache plugin.

    in reply to: Spacing in comments #12330
    Sakin
    Keymaster

    @Printsev: It is difficult to manage just with css as it’s not coded in the same wrap. So, we have to play with position with CSS. I am not so sure about the position that will be exact or not. You can try adding in the following css in “Appearance => Theme Options => Custom CSS” box.

    .comment { position: relative; }
    .comment .reply {
    	bottom: 70px;
        bottom: 7rem;
        display: block;
        margin: 0;
        padding: 0;
        position: absolute;
        right: 0;
    }
    @media screen and (min-width: 1190px) {
    .comment .reply {
    	bottom: 90px;
        bottom: 9rem;
    }	
    }
    @media screen and (max-width: 1060px) {
    .comment .reply {
    	bottom: 50px;
        bottom: 5rem;
    }	
    }
    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; }

Viewing 20 posts - 11,241 through 11,260 (of 14,501 total)