Forum Replies Created

Viewing 20 posts - 5,401 through 5,420 (of 14,497 total)
  • Author
    Posts
  • in reply to: Extra page links #49692
    Sakin
    Keymaster

    @Andrew: Sorry I don’t understand it. Can you show me your URL and explain in reference with that URL so that I can check in.

    in reply to: Theme in IE #49691
    Sakin
    Keymaster

    @bobgarrett: Can you post in your site URL so that I can check in and also if you can upload screenshot of issue in your site or any photo-sharing site and send me the link of screenshot.

    in reply to: Custom Header Image for Logo #49652
    Sakin
    Keymaster

    @lsdinc: Yes, you can upload the image size of 1600×200. There is no restriction on this. Just go to “Appearance => Theme Options => Header Featured Image Options” and upload it.

    For content widget in post, I don’t recommend it as it is balance as per the screensize.

    in reply to: as removing the text… #49651
    Sakin
    Keymaster

    @alexmo: The CSS you have added in has space in-between # and form-allowed-tags. There shouldn’t be any space in-between. So, copy the css as below. I have tested in Catch Kathmandu Theme and it works fine.

    #form-allowed-tags { display: none; }

    Sakin
    Keymaster

    @arun: Check your upload folder permission. In Catch Everest theme, you can upload the logo image from “Appearance => Header”

    Then to make your site title to appear next to your logo, you need to add the following css in “Appearance => Theme Options => Custom CSS” box:

    #hgroup.with-logo {
        clear: none;
        float: left;
        padding-left: 10px;
    }
    in reply to: Remove Featured Image on Posts #49646
    Sakin
    Keymaster

    @glenda: Post in your site URL and will see if there is anything I can do it.

    in reply to: as removing the text… #49644
    Sakin
    Keymaster

    @alexmo: I don’t get it what you mean and why you cannot add it. You can just add that CSS in Custom CSS Box.

    Another option is to build child theme and remove that code. For child theme read this http://catchthemes.com/blog/create-child-theme-wordpress/ and then in your child theme functions.php file you can add the following code:

    /**
     * Modify Comment Form Defaults
     */
    function catchkathmandu_comment_defaults( $defaults ) {
        
        $defaults['comment_notes_after'] = '';
    
        return $defaults;
    
    }
    add_filter( 'comment_form_defaults', 'catchkathmandu_comment_defaults' );
    in reply to: Changing fonts only for the site title? #49643
    Sakin
    Keymaster

    @Riccardo: I have already replied you in http://catchthemes.com/support-forum/topic/selectively-displaying-the-homepage-featured-content/

    Please don’t post same question in 2 places. It will be difficult for us to manage.

    in reply to: Primary Menu not showing up #49642
    Sakin
    Keymaster

    @Lisa: Thanks for your appreciation and have a nice day. Cheers 🙂

    in reply to: Primary Menu not showing up #49640
    Sakin
    Keymaster

    @Lisa: I am the Founder/Lead developer of Catch Themes and thanks for your appreciation. You can help us back by providing good review and rating at our Catch Kathmandu them in WordPress theme repo https://wordpress.org/support/view/theme-reviews/catch-kathmandu

    in reply to: Remove Navigation Bar & Title on Header picture #49638
    Sakin
    Keymaster

    For whole header it will be as below:

    .page-id-1234 #branding,
    .page-id-1218 #branding,
    .page-id-959 #branding { 
        display: none; 
    }
    in reply to: Primary Menu not showing up #49637
    Sakin
    Keymaster


    @Lisa
    : There no option to do that from Theme Options panel. This is high level of customization and required you to build child theme. So, read this http://catchthemes.com/blog/create-child-theme-wordpress/ and build child theme and then copy the following code in your child theme functions.php file.

    // Removing the Default Action Hook
    function unhook_catchkathmandu_functions() {
    	remove_action( 'catchkathmandu_before_main', 'catchkathmandu_slider_display', 10 );
    	remove_action( 'catchkathmandu_after_hgroup_wrap', 'catchkathmandu_secondary_menu', 10 );
    }
    add_action( 'init', 'unhook_catchkathmandu_functions' );
    
    add_action( 'catchkathmandu_after_hgroup_wrap', 'catchkathmandu_slider_display', 10 );
    add_action( 'catchkathmandu_after_hgroup_wrap', 'catchkathmandu_secondary_menu', 15 );
    in reply to: Remove Navigation Bar & Title on Header picture #49635
    Sakin
    Keymaster

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

    .page-id-1234 #branding #access,
    .page-id-1218 #branding #access,
    .page-id-959 #branding #access { 
        display: none; 
    }
    in reply to: Change menu title on mobile devices? #49634
    Sakin
    Keymaster

    @Nijn: Actually we don’t recommend you to change that. But if you want to change that then send me your site URL and the Menu text for which you want to change to.

    in reply to: Social Media links shows up as bullets instead of icons #49633
    Sakin
    Keymaster

    @Mogens: Yes, I check in your site and see that you have customize the core css file style.css. You shouldn’t edit/add any files inside core theme directory ‘catch-evolution-pro’. If you need to edit or add any extra css then you can either add it in “Appearance => Theme Options => Custom CSS” box or build child theme and add it in your child theme style.css. For child theme read http://catchthemes.com/blog/create-child-theme-wordpress/

    So, please restore the original theme and then add customization as per the instruction. What is see in your cutomized style.css. There is missing closing bracket in

    #slider-wrap .featured-text .featured-text-wrap .slider-title {
        font-weight: bold;

    It should be as

    #slider-wrap .featured-text .featured-text-wrap .slider-title {
        font-weight: bold;
    }
    in reply to: Comments box #49631
    Sakin
    Keymaster

    @level7tech: To hide the leave a reply in your post header. You can add the following css in “Appearance => Theme Options => Custom CSS” box”
    .entry-header .comments-link { display: none; }

    About the way the comment works, it’s from WordPress and we don’t have anything to do with it. If you don’t like this then you might want to search for comment plugin like Disqus, Jetpack comment and so on.

    in reply to: tinynav three menu bars not showing #49629
    Sakin
    Keymaster

    @Riccardo: It’s because of your child theme. You haven’t build child theme properly. I check in your child theme style.css and see that you have copied all CSS from parent theme to child theme. This is not the way to do it. You should import the parent theme css and then add in your css below. You can read and download the sample child theme from http://catchthemes.com/blog/create-child-theme-wordpress/

    in reply to: Selectively displaying the homepage featured content #49628
    Sakin
    Keymaster

    @Riccardo: Try adding in the following css in “Appearance => Theme Options => Custom CSS” box to hide featured content for user not loggedin.

    #featured-post { display: none; }
    .logged-in #featured-post { display: block; }
    in reply to: responsive design submenu/drop down background color change #49597
    Sakin
    Keymaster

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

    #header-menu .sb-options { background-color: #000464; }
    @media screen and (max-width: 960px) {	
        #main-slider { display: none; }
    }
    in reply to: Remove Navigation Bar & Title on Header picture #49596
    Sakin
    Keymaster

    @Andrew: You can add CSS to hide the navigation based on the page ID class. So, can you send me the URL of the pages where you want to hide it then I will send you css to hide it.

Viewing 20 posts - 5,401 through 5,420 (of 14,497 total)