Forum Replies Created

Viewing 20 posts - 2,621 through 2,640 (of 14,501 total)
  • Author
    Posts
  • in reply to: Slider Plugin : Royalslider #64251
    Sakin
    Keymaster

    @Lizi: It should work fine but I am not 100% sure. As I haven’t use that plugin. But plugin should work with theme otherwise how will people use that plugin. They should have instructions to add in. Then I can check you on it. You might need to build child theme. For child theme refer to http://catchthemes.com/blog/create-child-theme-wordpress/

    in reply to: Featured content in a static homepage #64250
    Sakin
    Keymaster

    @Ouss1984: In Catch Base Free theme, you can change that Demo Featured Content to “Featured Page Content”. So, for that first you need to create page and then assign featured image in those pages. After that you need to go to “Appearance => Customize => Featured Content => Featured Content Options => Select Content Type” and then select “Featured Page Content” and then select the pages, which you want to show in Featured Page Content. For more, refer to theme instructions page at http://catchthemes.com/theme-instructions/catch-base/#featured-content

    But if you want to use Featured Post Content, Featured Category Content or Independent Featured Image Content, then you need to upgrade to Pro version. Where you will have option to select the featured content type. You can check out the additional features of Catch Base Pro theme at http://catchthemes.com/theme-instructions/catch-base-pro/

    in reply to: double language slector with qTranslate-X? #64248
    Sakin
    Keymaster

    @gernot: For that you need to check the setting of qTranslate-x and also check in Widget if you have added any.

    If you cannot find then send me your site URL and let me know which you want to hide it. Then we can use Custom CSS to hide it.

    in reply to: header image slideshow? #64247
    Sakin
    Keymaster

    @gernot: In Free version, you only have option to use Featured Page Slider. So, you can just create page, add featured image in those pages. Go to “Appearance => Customize => Featured Slider => Featured Slider Options => Select Slider Type” and then select “Featured Page Slider” and finally the pages that you want to show in slider. For more about page slider, refer to http://catchthemes.com/theme-instructions/catch-adaptive/#featured-slider-content

    If you want more dynamic like Featured Image Slider and all then you need to upgrade to pro version. See the additional features that you will get in pro version at http://catchthemes.com/theme-instructions/catch-adaptive-pro/

    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.

Viewing 20 posts - 2,621 through 2,640 (of 14,501 total)