Forum Replies Created

Viewing 20 posts - 2,621 through 2,640 (of 14,494 total)
  • Author
    Posts
  • in reply to: Widget Problem on Catch Responsive Pro #64374
    Sakin
    Keymaster

    @Harry: Yes, when you have problem with login and logout, it’s usually cache issue. For that, you need to go to your cache plugin settings and clear your cache.

    in reply to: Unable to select select sub menu items #64373
    Sakin
    Keymaster

    @Laurie: Sorry I don’t understand it. As when I check in your site, I can click on submenu.

    in reply to: Excerpt length #64372
    Sakin
    Keymaster

    @margarita: For custom excerpt, you can build child theme and add the following code in your child theme functions.php file and then you will get custom excerpt box in your page where you can add in custom text. For child theme refer to http://catchthemes.com/blog/create-child-theme-wordpress/.

    add_action( 'init', 'catchresponsive_add_excerpts_box_pages' );
    function catchresponsive_add_excerpts_box_pages() {
         add_post_type_support( 'page', 'excerpt' );
    }

    If you find difficulty to add in this code then you can search for plugin to add custom excerpt box in pages.

    in reply to: Can't see picture in posts #64369
    Sakin
    Keymaster

    @joel: Looks like you haven’t add in Featured Image in your posts. So, edit those post and then assign your image as featured image. For featured image, check out screenshot at https://www.pinterest.com/pin/548594798329948788/ or screencast at http://catchthemes.com/blog/videos-blog/video-series-adding-featured-image-wordpress-postpage/

    in reply to: Menu Covers up Image #64367
    Sakin
    Keymaster

    @gernot: Can you let me know what doesn’t work in iphone 5s. Please post in your issue with your site URL.

    in reply to: logo and change post title indents #64366
    Sakin
    Keymaster

    @Kim:
    1. Sorry I don’t understand it. I see same as Homepage and single post title have same padding. Only that single post have post navigation at top.

    2. For this, you need to use Logo. So, just add it as logo and let me know it. Then I will send you custom css.

    in reply to: Spacing btw social icons widget and main menu #64345
    Sakin
    Keymaster

    @Laurent: You can add the following css in “Appearance => Theme Options => Custom CSS” box:

    #header-right { padding-top: 0; }

    in reply to: Layout without side bar on tablet #64252
    Sakin
    Keymaster

    @Christine: It’s because we change the size from custom css. Now you can add the following css in “Appearance => Theme Options => Custom CSS” box:

    @media screen and (max-width: 980px) {	
    	#masthead #site-logo img {
    		max-height: 120px;
    	}
    	#masthead.fixed-header #site-logo img {
    		max-height: 28px;
    	}
    }
    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/

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