Forum Replies Created

Viewing 20 posts - 3,621 through 3,640 (of 14,509 total)
  • Author
    Posts
  • in reply to: Add a Social Icon to the header #58411
    Sakin
    Keymaster

    @alexmeierhh: Sorry but our social icons are not from Jetpack, it’s from Genericion. So, not sure how to add that. If you have this icon ready then I suggest you to upgrade to pro version where you have option to upload your custom social icon image and use it.

    in reply to: header image #58382
    Sakin
    Keymaster

    @Kingfisher: Can you post in your site URL? As when I check in our server, it’s working fine. I just uploaded about 5 images and then click on “Random uploaded headers”

    Sakin
    Keymaster

    @effess: Yes, then you don’t need to change anything. You can just add your additional responsive css in your child theme style.css. Let me know what are you trying to do it, send me your site URL and css that you want to add in.

    in reply to: widget tranparency #58379
    Sakin
    Keymaster

    @Mirjam: Ok try adding in the following css in “Appearance => Theme Options => Custom CSS” box:

    #secondary .widget {
    	background: #fff; /* Solid Background for old browser */
    	background: rgba(255, 255, 255, 0.5);
    }
    in reply to: Menu text size modification #58377
    Sakin
    Keymaster

    @roderick: For sidebar and footer sidebars font size, change it in the following css as per your need and then add it in “Appearance => Customize => Theme Options => Custom CSS Options” box:

    #secondary .widget-area, 
    #colophon .widget-area {
        font-size: 14px;
    }
    in reply to: How to disable posts shown on homepage #58366
    Sakin
    Keymaster

    @klaarbenje: Yes, you can create blank page and set that page as static front page from “Settings => Readings => Front page displays”, where you need to check “A static page (select below)” and select that page. This will show that static blank page in your homepage. Then you can add the following css in “Appearance => Customize => Theme Options => Custom CSS” box to hide that page content.

    .home #content { display: none; }

    in reply to: Add a Social Icon to the header #58365
    Sakin
    Keymaster

    @alexmeierhh: Can you send me that you have created. So, that I can check in if we would add that. As in Catch Responsive theme, we use Genericons for Social Icons http://genericons.com/, which doesn’t have xing.com. So, you might want to request in Genericons to add in. Or you can upgrade to Pro version where we have option to add in custom social icon image. Upload any image and link as per your need.

    in reply to: Change in Footer #58364
    Sakin
    Keymaster

    @Slevinox: Which Footer Content are you talking about. If you are talking about Footer Widget content then you can edit that from “Appearance => Widget”

    in reply to: Footer 3 Widgets Not Displaying in 3 Columns #58362
    Sakin
    Keymaster

    @JamminJay: You are using old version of Adventurous theme. So, I am not ale to say it exactly. But I see the following extra css in you style.css file.

    .widget-area {
        margin-left: 1%;
        margin-right: 1%;
    }

    So, the best option at this stage will be to update your theme to latest version which will overwrite those css and will fix it. If not then you can add the following css in “Appearance => Theme Options => Custom CSS” box:

    #supplementary .widget-area {
        margin-left: 0;
    }
    in reply to: Footer with qTranslate-X #58350
    Sakin
    Keymaster

    Thanks Carlo, we will make this theme soon compatible to qTranslate-X plugin.

    in reply to: One page template? #58315
    Sakin
    Keymaster

    @Paul: Ok, you can add the following css in “Appearance => Theme Options => Custom CSS” box:

    .page-id-3926 #branding,
    .page-id-3926 #header-menu,
    .page-id-3926 #footer-menu {
        display: none;
    }
    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

Viewing 20 posts - 3,621 through 3,640 (of 14,509 total)