Forum Replies Created

Viewing 20 posts - 3,841 through 3,860 (of 14,498 total)
  • Author
    Posts
  • in reply to: Social Icons in Header #57296
    Sakin
    Keymaster

    @Vivien: First fill your social profile URL in “Appearance => Theme Options => Social Links => Predefine Social Icons”. Then go to “Appearance => Widgets” and drag and drop “1. Catch Kathmandu: Social” widget to Header Right Sidebar.

    in reply to: Adjust size of menu #57295
    Sakin
    Keymaster

    @Vivien: Please share your site URL and explain. Sorry, I am but confused.

    in reply to: Menu disapears #57294
    Sakin
    Keymaster

    @Gareth: I don’t see that. I can see your About and Contact menu fine. But yes, I see that your page “Meditation” http://www.pathwaystohappiness.co.uk/?page_id=515 is redirecting to homepage.

    in reply to: Comments On Pages remain, after I remove them. #57293
    Sakin
    Keymaster

    @Gareth: You have WP Super Cache active. So, when you make any major changes then you need to go to WP Super Cache settings and empty cache. This will load your old cache, so need to clear to see the change. I just check in your site and don’t see any comment.

    in reply to: Menu text size modification #57291
    Sakin
    Keymaster

    @Samson81: For sub-menu, you can adjust the font in the following css:

    .nav-primary .menu .sub-menu a, 
    .nav-primary .menu .children a {
        font-size: 14px;
    }
    in reply to: Menu text size modification #57290
    Sakin
    Keymaster

    @beatmaniaNZ: Please don’t edit core theme files inside ‘catch-responsive-pro’ directory. As these edits will be reverted back to original when you update the theme. So, for CSS changes either you need to add in “Appearance => Customize => Theme Options => Custom CSS Options” box or you need to build child theme and add in you child theme style.css.

    So, to change the font size of primary menu, you can adjust the size in the following css and then add it “Appearance => Customize => Theme Options => Custom CSS Options” box

    .nav-primary .menu a {
        font-size: 16px;
    }
    in reply to: Featured Content headings color #57288
    Sakin
    Keymaster

    @Kevin: Did you check in “Appearance => Customize => Color Options => Featured Content Color Options”. There you have “Featured Content Title Color”. If this is not what you are looking for then please send me your site URL and the color code what you want to change to.

    in reply to: Grid lay out for posts #57285
    Sakin
    Keymaster

    @Susie: There is no option to do that. But you can use Featured Content Option to show your post. Refer to Theme Instructions at http://catchthemes.com/theme-instructions/catch-responsive-pro/#featured-content. For this go to “Appearance => Customize => Featured Content Options” and select either “Featured Category Content” or “Featured Post Content” and show you posts there.

    We will be coming with new theme soon which will have columns layout. Also our theme Create uses Columns layout for posts. See this demo http://catchthemes.com/demo/create/

    in reply to: shortcodes #57283
    Sakin
    Keymaster

    @Michael:
    1. What do you mean by removing blog out of category. If you don’t want then you can remove that category.
    2. We don’t have any defined shortcode in Catch Evolution theme. So, I don’t understand what are you trying to add in. Maybe you are using shortcode from plugin.
    3. Your author archive is there, see this http://www.michaelhiebert.com/author/Michael/. Also you can add post in Book category and then list that category page. For example this one http://www.michaelhiebert.com/category/blog/guest-posts/

    in reply to: How to write title on the top of the images? #57278
    Sakin
    Keymaster

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

    in reply to: Featured Image Size #57277
    Sakin
    Keymaster

    @stuknowler: I see that you have already change the image in Featured Content Display image size. I hope you have already solved it.

    in reply to: background color around the picture #57273
    Sakin
    Keymaster

    @Alexey: You can add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:
    #main .gallery img { border: none; }

    Sakin
    Keymaster

    @Rolando: I don’t get it what you mean. You are using Simple Catch Pro theme, where you can use Featured Image Slider and upload any image size as per your need. See this http://catchthemes.com/blog/videos-blog/video-series-adding-featured-image-slider/

    in reply to: Varying header images #57243
    Sakin
    Keymaster

    @afeauto:Thanks and I have fixed the issue and we will be releasing this patch in new version update.

    in reply to: Home Page Load Problem #57212
    Sakin
    Keymaster

    @Mark: You can use “Image Loader” as “wait” if you have issue with sliders appear our of order. But most of the time “true” will load slider appear in same order.

    in reply to: Navigation Bar Inquiries #57210
    Sakin
    Keymaster

    @kopernik:
    1. To change the menu potion to top above your site title. You need to build child theme. For child theme, refer to http://catchthemes.com/blog/create-child-theme-wordpress/. Then add the following code in your child theme functions.php file.

    // 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 at top in header
    add_action( 'catchresponsive_header', 'catchresponsive_primary_menu', 15 );

    2. Then you need to add following css in your child theme style.css file to make your menu fixed:

    .nav-primary .wrapper { width: 1200px; }
    @media screen and (max-width: 1280px) { 
    	.nav-primary .wrapper { width: 1100px; }
    }
    @media screen and (max-width: 1152px) { 
    	.nav-primary .wrapper { width: 1040px; }
    }
    @media screen and (max-width: 1100px) { 
    	.nav-primary .wrapper { width: 960px; }
    }
    @media screen and (min-width: 991px) {
    	.site { position: relative; }
    	.site .nav-primary { position: fixed; top: 0; overflow: hidden; }
    	#masthead { padding-top: 40px; }
    }
    in reply to: Slider configuration and display in IE problem. #57209
    Sakin
    Keymaster

    @alexander: Which version of IE are you check in from. As when I check in from IE in my computer, your site slider is working fine. Also I don’t understand demo working and page slider not working as both uses same script and style.

    in reply to: Header Image Size on Homepage #57208
    Sakin
    Keymaster

    @JeffI: Thanks for your prayers. We really need it. We are so sadden and shattered by this devastating earthquake.

    Can you go to “Appearance => Header” and them remove your current header image and then re-upload it. It is playing with width issue.

    If it doesn’t fix it then you can add the following css in “Appearance => Theme Options => Custom CSS” box:

    #site-logo img { width: 600px; max-width: 100%; }

    in reply to: lost Home #57205
    Sakin
    Keymaster

    @Sheila: Sorry this is not a theme issue and it’s about WordPress, Pages and Menu. So, just go to “Appearance => Menus” and edit your menu. You can delete that Home from your menu and add original home to menu.

    See this on how to add original home to your menu. https://www.pinterest.com/pin/548594798331207092/

    in reply to: Home Page Load Problem #57203
    Sakin
    Keymaster

    Sorry for the late response due to disaster in Nepal. We are finally released Catch Base Pro 2.4, Catch Responsive Pro 2.1 and Full Frame Pro 2.3. Also we have pushed Catch Responsive 1.4, Full Frame 1.5 and Catch Base 1.8 to WordPress.org and these free themes will be live after approval from WordPress.org theme review team.

Viewing 20 posts - 3,841 through 3,860 (of 14,498 total)