Forum Replies Created

Viewing 20 posts - 2,641 through 2,660 (of 14,510 total)
  • Author
    Posts
  • in reply to: Replace Featured Slider with embeded video #64120
    Sakin
    Keymaster

    @Harry: Thanks for your appreciation. If you are happy with my service and Catch Responsive Theme, then please support by providing your valuable review and rating at https://wordpress.org/support/view/theme-reviews/catch-responsive?rate=5#postform

    Sakin
    Keymaster

    @Brendon:
    1. Try adding in the following css in “Appearance => Customize => Theme Options => Custom CSS” box:
    #featured-content { background-size: cover; }

    2. How did you add in? If you are trying to add that script in header. Then we recommend you to install Catch Web Tools plugin https://wordpress.org/plugins/catch-web-tools/ and then go to “Catch Web Tools => Webmaster Tools” then check in “Enable Webmaster Module” and then add that script in “Header and Footer Script => Enter scripts or code you would like output to wp_head()”

    Sakin
    Keymaster

    @llw: You can add the following css in “Appearance => Theme Options => Custom CSS” box:
    .archive .page-header { display: none; }

    in reply to: Menu – is menu justifcation possible? #64096
    Sakin
    Keymaster

    @Neil: You can increase padding-left and padding-right and then it will spread your menu. For this, just add the following css in “Appearance => Theme Options => Custom CSS” box:

    #access a {
        padding-left: 10px;
        padding-right: 10px;
    }

    Then you can center the menu by adding in the following css in “Appearance => Theme Options => Custom CSS” box:

    #access ul {
        text-align: center;
    }
    #access li {
        display: inline-block;
        float: none;
    }
    #access ul ul li {
        display: block;
        float: none;
        text-align: left;
    }
    in reply to: sprintf(): Too few arguments in catchbase-core #64095
    Sakin
    Keymaster

    @mydreamin: Thanks for your appreciation and I hope you will provide good review and rating for Catch Base theme at https://wordpress.org/support/view/theme-reviews/catch-base?rate=5#postform

    Thanks 🙂

    in reply to: Mobile Version Like Desktop look #63994
    Sakin
    Keymaster

    @Daniel: Catch Flames is responsive design theme which changes design as per the devices you view from. To make mobile version exactly like Desktop view is not that possible in responsive design. That is why I asked you to disable responsive design.

    Also I see that you have Mega menu instead of our default menu. In this case, you need to add the following css in “Appearance => Theme Options => Custom CSS” box:

    /* Hide default mobile menu and enable mega mobile menu */
    .mobile-menu { display: none; }
    @media screen and (max-width: 940px) {
    	#header-menu { display: block; }
    }

    If we don’t push left column then it will not be easy to read content. So, what I can do is change it till the device with 783px. For that you can add the following css in “Appearance => Theme Options => Custom CSS” box:

    @media only screen 
    and (min-width : 783px) 
    and (max-width : 1000px)  {
        .three-columns.equal .content-sidebar-wrap {
            float: right;
            width: 74%;
        }
        .three-columns.equal #secondary {
            width: 32%;
        }
        .three-columns.equal #primary {
            width: 65%;
        }
        .three-columns.equal #third-sidebar {
            float: left;
            width: 24%;
        }
        .three-columns #third-sidebar .widget {
            width: 100% !important;;
        }
    }
    in reply to: Removing Page Title Links #63960
    Sakin
    Keymaster

    @Jamie: Try adding following css in “Appearance => Theme Options => Custom CSS” box:
    .content-area .type-page .entry-header { display: none; }

    in reply to: Page to display a Category #63955
    Sakin
    Keymaster

    @ethernectar: Are you trying to related posts. Then you might want to try in “Related Posts” module from Jetpack plugin. Check this out http://jetpack.me/support/related-posts/

    in reply to: Featured content on specific pages #63954
    Sakin
    Keymaster

    @Susie: But you haven’t enabled “Featured Content” as Entire site.

    in reply to: Featured image uploaded but not appearing on post page #63950
    Sakin
    Keymaster

    @Patrick: I checked in your site and see that you haven’t added in Featured Image in your site. So, edit your individual posts and add in featured image. Check this screencast at http://catchthemes.com/blog/videos-blog/video-series-adding-featured-image-wordpress-postpage/

    in reply to: how to add border/background to posts? #63919
    Sakin
    Keymaster

    @Bruce: ok then replace previous css with the following:

    body.blog,
    body.archive {
        background-color: #8bc8fc;
    }
    .blog #primary .post,
    .archive #primary .post {
        background-color: #77aad5;
        border: 1px solid #3a79ae;
        padding: 10px;
    }
    in reply to: Featured image uploaded but not appearing on post page #63875
    Sakin
    Keymaster

    @Patrick: ok check your email.

    in reply to: how to add border/background to posts? #63858
    Sakin
    Keymaster

    @Bruce: This is bit complicated, so I recommend you to hire customizer to do it. You can either build child theme and add css like below in your child theme style.css. For child them refer to http://catchthemes.com/blog/create-child-theme-wordpress/ or can add it in “Appearance => Theme Options => Custom CSS” box:. In the following css, you cna change the color code and elements as per your need.

    body.blog,
    body.archive {
        background-color: #8bc8fc;
    }
    
    .blog #main,
    .archive #main {
        background-color: #77aad5;
        border: 1px solid #3a79ae;
        padding-left: 20px;
        padding-right: 20px;
    }
    in reply to: Help I deleted something on Stylesheet (style.css) #63857
    Sakin
    Keymaster

    @Bruce: You shouldn’t edit any core theme files like style.css, functions.php, index.php and so in. All the files inside ‘simple-catch-pro’ directory should be remained unchained. If you want to add additional css, then you can build child theme and add in. For child theme, refer to http://catchthemes.com/blog/create-child-theme-wordpress/ or you can add your custom css in “Appearance => Theme Options => Custom CSS” box.

    Now, to revert back the original css. You can download Simple Catch Pro theme from your account at http://catchthemes.com/my-account and then unzip it. Then option style.css, copy the css and then paste it in that style.css that you have open it from “Appearance => Editor”.

    in reply to: Override sitewide default layout for Blog posts only? #63856
    Sakin
    Keymaster

    @heather: due to log of conditions there is no such easy way to do it. The best option will be to Set Default with sidebar. As there is more posts then pages. Then you can go to pages and edit it option to set as No Sidebar.

    If you really want to do it from child theme then copy sidebar.php file to your child theme and then replace the following code:

       	// WooCommerce Shop Page excluding Cart and checkout
    	if ( class_exists( 'woocommerce' ) && is_woocommerce() ) {

    with

    	if ( is_single() ) {
    		$layout = 'right-sidebar'; 
    		$sidebaroptions = 'right-sidebar';
    	}
       	// WooCommerce Shop Page excluding Cart and checkout
    	elseif ( class_exists( 'woocommerce' ) && is_woocommerce() ) { 

    Then copy the function fullframe_body_classes() to your child theme functions.php file and then edit the following code:

    	// WooCommerce Shop Page 
    	if ( class_exists( 'woocommerce' ) && is_woocommerce() ) { 

    with

    	if ( is_single() ) {
    		$layout = 'right-sidebar';
    	}
    	// WooCommerce Shop Page 
    	elseif ( class_exists( 'woocommerce' ) && is_woocommerce() ) { 
    in reply to: Mobile Version Like Desktop look #63853
    Sakin
    Keymaster

    @Daniel: For that you need to disable responsive design. Just go to “Appearance => Theme Options => Responsive Design”, check in “Disable Responsive Design” and save changes.

    in reply to: Featured image uploaded but not appearing on post page #63852
    Sakin
    Keymaster

    @Patrick: This is your blog page http://bible-stories-library.com/my-blog/. Now, you need to add featured image in posts like
    http://bible-stories-library.com/2015/08/language-of-love-does-god-really-love-us/
    http://bible-stories-library.com/2015/08/language-of-love-is-god-really-in-control/
    http://bible-stories-library.com/2015/08/language-of-love-why-does-god-allow-bad-things/

    and so on.

    I guess, you have just inserted image in those posts. But haven’t added in Featured Image. As it’s working here. If you have done all these and still not working then I will email you to check in your server.

    in reply to: Replace Featured Slider with embeded video #63851
    Sakin
    Keymaster

    @Harry: Ok for that you need to replace the previous code with the following:

    function catchresponsive_featured_slider() {
    	if ( is_front_page() ) : ?>
    	<section id="feature-slider">
    		<div class="wrapper hentry">
    				Add in Video here 
    		</div><!-- .wrapper -->
    	</section><!-- #feature-slider -->
    	<?php endif;
    }

    Then add the following css in your child theme style.css
    #feature-slider .hentry { margin: 0; }

    in reply to: Featured image uploaded but not appearing on post page #63840
    Sakin
    Keymaster

    @Patrick: No, you need to add in Featured Image for all those posts for which you want to show image. Just edit individual posts and add in Featured image.

    in reply to: logo, color, form the navigation bar #63837
    Sakin
    Keymaster

    @Dhuan: All those detail color options are there only Pro version.

    1. For slider text, you can change the color code in the following css and then add it in “Appearance => Theme Options => Custom CSS” box:

    #slider-wrap .featured-text {
        color: #fff;
    }

    2 and 3. These blocks are widget in Primary Sidebar. For that, you can just go to “Appearance => Widgets”. If you like to add image then you might want to drag and drop “Adspace Widget” to your sidebar and add images.

    4. The three boxes in footer are widgets in “Footer Area One”, “Footer Area Two” and “Footer Area Three” . For this also, you need to go to “Appearance => Widgets” and add in widget to these areas.

Viewing 20 posts - 2,641 through 2,660 (of 14,510 total)