Forum Replies Created

Viewing 20 posts - 3,621 through 3,640 (of 14,505 total)
  • Author
    Posts
  • in reply to: full-width header #58314
    Sakin
    Keymaster

    @effess: You can see the demo of layout option in Catch Kathmandu Pro at http://catchthemes.com/demo/catch-kathmandu/layout-options/ and for Full Width, check this http://catchthemes.com/demo/catch-kathmandu/layout-options/no-sidebar-full-width/. So, I don’t get it what are you trying to go it. Can you upload screenshot in your site or any photo sharing site and share your screenshot URL and your site URL.

    in reply to: where can i edit the asynconious load ? #58313
    Sakin
    Keymaster

    @Stephan: I don’t know about this code. So, if you want this code to be added in footer then you can add to “Appearance => Theme Options => Webmaster Tools => Header and Footer Codes => Code to display on Footer” and if you want to add that in your header then you can add to “Appearance => Theme Options => Webmaster Tools => Header and Footer Codes => Code to display on Header” box.

    in reply to: Breadcrumb NavXT separator not showing #58312
    Sakin
    Keymaster

    @effess: Can you post in your site URL and then I can check in.

    in reply to: Center Menu #58311
    Sakin
    Keymaster

    @mosign: First, go to “Appearance => Customize => Navigation” and then check in “Check to disable search box in Primary Menu” to disable search toggle in menu. Then add the following css in “Appearance => Theme Options => Custom CSS” box:

    .menu.catchresponsive-nav-menu, #menu-main {
        float: none;
        text-align: center;
        width: 100%;
    }
    .catchresponsive-nav-menu li { float: none; }
    in reply to: Menu Position Slider / Featured Image #58310
    Sakin
    Keymaster

    @mosign: Did you try the code that I send you on http://catchthemes.com/support-forum/topic/menu-at-bottom-of-slider-featured-image/. When I add this code in our server child theme. Menu is showing below the slider.

    // Unhook default Catch Responsive functions
    function unhook_catchresponsive_functions() {
        remove_action( 'catchresponsive_after_header', 'catchresponsive_primary_menu', 20 );
    }
    add_action( 'init', 'unhook_catchresponsive_functions' );
    
    //Adding menu after slider
    add_action( 'catchresponsive_before_content', 'catchresponsive_primary_menu', 20 );

    If this is not working in your site then, can you send me the code that you have in your child theme functions.php file. Also try increasing the value of add_action from 20 to like 40 and so on. So, you replace the code:

    //Adding menu after slider
    add_action( 'catchresponsive_before_content', 'catchresponsive_primary_menu', 20 );

    with 40 like this:

    //Adding menu after slider
    add_action( 'catchresponsive_before_content', 'catchresponsive_primary_menu', 40 );
    in reply to: Footer with qTranslate-X #58309
    Sakin
    Keymaster

    @carlo caccialanza: We haven’t make this theme compatible with qTranslate-X plugin. So, you might want to build child theme. For child theme and sample child theme, refer to http://catchthemes.com/blog/create-child-theme-wordpress/ and then add the following code in child theme functions.php file.

    if ( ! function_exists( 'catchresponsive_invalidcache' ) ) :
    /**
     * Template for Clearing WPML Invalid Cache
     */
    function catchresponsive_invalidcache() {
    	delete_transient( 'catchresponsive_featured_content' );
    	delete_transient( 'catchresponsive_featured_slider' );
    	delete_transient( 'catchresponsive_footer_content' );	
    	delete_transient( 'all_the_cool_cats' );
    } // catchresponsive_invalidcache
    endif;
    
    add_action( 'after_setup_theme', 'catchresponsive_invalidcache' );
    in reply to: Button in Promotion headline #58308
    Sakin
    Keymaster

    @powwareherbie: Just go to “Appearance => Customize => Theme Options => Promotion Headline Options”. Then in delete link in “Promotion Headline Link”, make sure it’s empty. Then you can increase “Promotion Headline Left Section Width” to 100%.

    in reply to: Changing color inside page text #58307
    Sakin
    Keymaster

    @kingshuk: As you have bold the text. All bold text have color code #666. So, either you need to remove that bold or you can add the following css in you child theme style.css file

    #content strong, #content b { color: inherit; }

    in reply to: Google Fonts #58306
    Sakin
    Keymaster

    @Kim: Yes, I did search for David font and see the result https://dl.dropboxusercontent.com/u/81234910/google-font-david-not-found.png. I just found “Cardo” font by David Perry. But there is no font called David

    in reply to: Widges Header Sidebar #58289
    Sakin
    Keymaster

    @lohanc: Thanks for your appreciation and if you like Catch Kathmandu Theme and Support then please support it by posting your review and rating at https://wordpress.org/support/view/theme-reviews/catch-kathmandu?rate=5#postform

    in reply to: Google Fonts #58287
    Sakin
    Keymaster

    @powwareherbie: I don’t get it what you mean. When I check in your site, I see that you have Open Sans for all heading tags as well as body text. So, can you explain what is you code and how are you trying to do it.

    in reply to: Google Fonts #58286
    Sakin
    Keymaster

    @Kim: I don’t see David in the list of Google Font, that is why it is not showing. For Google font list, check this https://www.google.com/fonts

    in reply to: WooCommerce Integration #58285
    Sakin
    Keymaster

    @afeauto: Yes, Catch Base Pro theme is not yet WooCommerce ready. We are in the process of making it compatible with it soon. Till date, we only have 7 theme ready for WooCommerce http://catchthemes.com/themes/category/woocommerce-ready/ and we are in the process of making it ready for Catch Base Pro, Full Frame Pro, Catch Responsive Pro and Gridalicious Pro. The update will be released on Mid of June.

    in reply to: yoast breadcrumbs #58284
    Sakin
    Keymaster

    @Cattext: Yes, you just need to change that to
    catchkathmandu_breadcrumb_display

    But we already have support for Breadcrumb NavXT plugin https://wordpress.org/plugins/breadcrumb-navxt/ . For this, you just need to activate the plugin and it will work fine.

    in reply to: Widges Header Sidebar #58283
    Sakin
    Keymaster

    @lohanc:
    1. For this, find the following css in Custom CSS:

    @media screen and (min-width: 960px) {
    #site-title { font-size: 45px; }
    #site-description { font-size: 20px; }
    }

    Replace with:

    @media screen and (min-width: 960px) {
        #site-title { font-size: 45px; line-height: 1; }
        #site-description { font-size: 20px; line-height: 1; }
    }

    Again, find the following css in Custom CSS:

    /* Padding Above Site Title */
    #hgroup {
        padding-top: 5px;
    }

    Replace with:

    /* Padding Above Site Title */
    #hgroup {
        padding-top: 8px;
    }

    2. For this, find the following css in Custom CSS:

    #hgroup-wrap { padding-bottom: 5px; }
    /* Padding Below Site Description */
    #hgroup-wrap {
        padding-bottom: 10px;
    }

    Replace with:

    #hgroup-wrap {
        padding-bottom: 0;
    }

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

    @media screen and (min-width: 1153px) {
        #secondary-menu ul.menu a {
            line-height: 40px;		
            line-height: 4rem;
            padding-top: 0;	
            padding-bottom: 0;		
        }
        #secondary-menu ul.menu ul {
            top: 40px;
        }
    }

    4. Adding line in the featured content will not look good. To justify, you can add the following css in “Appearance => Theme Options => Custom CSS” box:

    #featured-post .post {
        text-align: justify;
    }

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

    #secondary-menu ul.menu a {
        font-weight: bold;
    }
    in reply to: One page template? #58238
    Sakin
    Keymaster

    @Paul: Sorry there is no page template like that. If you want to hide it from custom css then please create page and then send me that page URL and will send you css to hide it.

    in reply to: Custom Post Slider #58237
    Sakin
    Keymaster

    @Juan: Thanks 🙂

    in reply to: center logo #58226
    Sakin
    Keymaster

    @mosign: It depends on your site URL and Theme used. So, I need your site URL or at least your settings and theme used. Best will be to buzz me back when your site is online.

    in reply to: Catch Flames to Catch Flames Pro #58225
    Sakin
    Keymaster

    @johnbatt: Yes it happens like that. Your menu will not be lost, you just need to reassign it. Same with widgets. But all your content will be safe. This is normal and it’s WordPress. You can check this http://devotepress.com/wordpress-writing-editing/upgrade-premium-version-wordpress-themes-eg-adventurous-pro/

    in reply to: Widges Header Sidebar #58224
    Sakin
    Keymaster

    2. For this, you can add the following css in “Appearance => Theme Options => Custom CSS” box:

    .header-sidebar .widget {
        clear: none;
        margin-right: 10px;
    }

    3. You can adjust the margin top and bottom as per you need to reduce the grey area and then add it in “Appearance => Theme Options => Custom CSS” box:

    .site {
        margin-top: 40px;
        margin-bottom: 40px;
    }

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

    #site-title, #site-description {
        float: left;
    }
Viewing 20 posts - 3,621 through 3,640 (of 14,505 total)