Forum Replies Created

Viewing 20 posts - 5,401 through 5,420 (of 14,509 total)
  • Author
    Posts
  • in reply to: main menu #49777
    Sakin
    Keymaster

    @paul: Do you mean that you just want to hide your menu in your homepage and show it in all other pages then you can add in the following css in “Appearance => Theme Options => Custom CSS” box:

    .home #access { display: none; }

    in reply to: Mp3's on my Site Disappeared #49776
    Sakin
    Keymaster

    @Kevin: Sorry I don’t know which shortcode are you using it. Are you using any plugin for MP3s.

    in reply to: Sticky 2nd Nav Menu #49771
    Sakin
    Keymaster

    @John U: Other CSS are automatically added and the parent style.css is imported in style.css of child theme. You will see the following CSS in your child theme style.css

    /* =Import Adventurous Pro CSS
    -------------------------------------------------------------- */
    
    @import url("../adventurous-pro/style.css");

    So, you don’t need to add adventurous-pro_enqueue_scripts_styles() function in your child theme functions.php file. Also in your //remove default secondary menu, you have done add_action and it should be as remove_action. Your child theme functions.php file should be as.

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

    @lsdinc: Yes, there are additional options in Pro version as Pro version is advance version of Free one. See more details about additional features and instructions for pro version at http://catchthemes.com/theme-instructions/catch-evolution-pro/

    in reply to: My Main Menu disappears after scrolling down #49744
    Sakin
    Keymaster

    @Daniel: I check in your site and your menu is working fine. Your Black menu is not a static fixed menu to do with your header. It get hidden when you scroll down and will come back when you scroll up.

    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.

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