Forum Replies Created

Viewing 20 posts - 5,401 through 5,420 (of 14,504 total)
  • Author
    Posts
  • in reply to: Custom Header Image for Logo #49703
    Sakin
    Keymaster

    @lsdinc: Hum I am confused. There in two layout option without sidebar. One is no sidebar full with http://catchthemes.com/demo/catch-evolution/no-sidebar-full-width/ and another is No sidebar only http://catchthemes.com/demo/catch-evolution/no-sidebar/.
    So, what are you trying to do it. Maybe share screenshot of your requirement.

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

    @lsdinc: If you don’t need any side widgets. Then you can change the site layout to “No Sidebar, Full Content” from “Appearance => Theme Options => Layout Options”. If you just want to change to full width layout to only few pages/posts, then you can edit that pages/posts and you will see Catch Evolution options below your page/post editor and there you can change the layout.

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

    @alexmo: Please add that CSS and send me your site URL then I will check in what’s wrong there.

    in reply to: Remove Featured Image on Posts #49698
    Sakin
    Keymaster

    @glenda: Nice and child themes is a great way to customize the theme. Cheers 🙂

    Sakin
    Keymaster

    @arun: Sorry I don’t get it what you mean.

    in reply to: Change menu title on mobile devices? #49694
    Sakin
    Keymaster

    @Nijn: In the following code, you can edit your label where I have type in Type in your label here and then add it in “Appearance => Theme Options => Webmaster Tools => Header and Footer Codes => Code to display on Header” box:

    <script type="text/javascript">
    jQuery(window).load(function() {
    
    //Remove Fixed Top Menu 
    jQuery( "#tinynav1" ).remove();
    
      // Adding Fixed top Menu with new header
      jQuery('#access-top .menu').tinyNav({
    	active: 'current-menu-item',
    	header: 'Type in your label here' 
      });
    
    });
    </script>
    in reply to: Change menu title on mobile devices? #49693
    Sakin
    Keymaster

    @prehabexercises: Sorry I don’t get it what you mean. Can you explain more in reference with your site URL.

    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; 
    }
Viewing 20 posts - 5,401 through 5,420 (of 14,504 total)