Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@Kim: Check the steps that you have missed:
1. First you need to install and activate “Catch Updater” from “Plugins => Add New => Uploads”
2. You need to download the latest zip file from your account at http://catchthemes.com/my-account
3. You can upload the downloaded zip file from “Appearance => Themes => Add New => Uploads”Sakin
Keymaster@Emanuel: Looks like there is two favicon loaded in your site. But I cannot check in your site as you have disable right click on your site. So, I cannot view source of your site. Can you disable that for now and then I can debug it.
Sakin
Keymaster@Kenta: If you just want to make small changes, then you can add your responsive style in “Appearance => Theme Options => Custom CSS” box. But if you want to totally change
responsive.cssthen you need to dequeue parent style and add you child file.So, if you want to edit it from your child theme then first, you need to create
responsive.cssandfunctions.phpfile in your child theme. If you download sample child theme from http://catchthemes.com/blog/create-child-theme-wordpress/, then you will get this. You just need to addresponsive.cssfile.Then, you need to add the following code in your
functions.phpfile in your child theme// Remove Parent theme responsive.css and adding new responsive.css in child theme function adventurous_child_enqueue_scripts() { wp_dequeue_style( 'adventurous-responsive' ); wp_enqueue_style( 'adventurous-child-responsive', get_stylesheet_directory_uri() . '/responsive.css' ); } add_action( 'wp_enqueue_scripts', 'adventurous_child_enqueue_scripts', 11 );Sakin
Keymaster@Gregory: If you have child theme, then you need to register sidebar first and then add in function to execute that sidebar.
You can add the following code in your child theme
functions.phpfile/** * Register our sidebars and widgetized areas. * * @since Catch Box Pro 1.0 */ function catchbox_child_widgets_init() { //Main Sidebar register_sidebar( array( 'name' => __( 'Home Below Menu Sidebar', 'catch-box' ), 'id' => 'sidebar-home-below', 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => "</aside>", 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>', ) ); } add_action( 'widgets_init', 'catchbox_child_widgets_init' ); /** * Home Below Menu Sidebar */ add_action( 'catchbox_before_primary', 'catchbox_home_below_menu_sidebar', 11 ); function catchbox_home_below_menu_sidebar() { if ( is_active_sidebar( 'sidebar-home-below' ) ) : ?> <div id="sidebar-home-below-menu" class="widget-area clearfix"> <?php dynamic_sidebar( 'sidebar-home-below' ); ?> </div> <!-- #sidebar-top --> <?php endif; }October 27, 2015 at 9:58 pm in reply to: How to remove the words "Catch Responsive by Catch Themes" #78614Sakin
Keymaster@wonnz: There is no option to remove that in Catch Responsive Free Theme. So, you need to build child theme and edit from the function. But you can upgrade to Catch Responsive Pro theme and then you can remove/edit that from “Appearance => Customize => Theme Options => Footer Editor Options”
Also there are lot of additional features, you can check out at http://catchthemes.com/theme-instructions/catch-responsive-pro/
Sakin
Keymaster@Makarov: If you want to remove that HOME text in homepage then you can add the following css in “Appearance => Theme Options => Custom CSS” box:
.home #content .entry-header { display: none; }Sakin
Keymaster@Nicole: It’s already fixed in new version 2.0. So, you can download the latest theme zip file from your account at http://catchthemes.com/my-account and then update it using one of the method listed in theme instruction page at http://catchthemes.com/theme-instructions/catch-adaptive-pro/#updating
October 27, 2015 at 8:34 pm in reply to: 1. header secondary menu in mobile 2. humbergar menu in desktop #78606Sakin
Keymaster@Kenta: Ok, for better support. Please post in your site URL. To show mobile menu in desktop, you need to add the following css in “Appearance => Theme Options => Custom CSS” box:
#secondary-mobile-menu { display: inline-block; float: left; } #header-mobile-menu { display: inline-block; float: right; } #secondary-menu, #header-right-menu { display: none; }Sakin
Keymaster@freebird: I checked in and it’s working fine. Did you refresh your browser after the changes. As when I check in your site it’s working fine.
Sakin
Keymaster@Vitaliy:
1. To change the font size, you can add the following css in “Appearance => Theme Options => Custom CSS” box:.home .entry-header .entry-title { font-size: 20px; font-size: 2rem; } @media screen and (max-width: 960px) { .home .entry-header .entry-title { font-size: 18px; font-size: 1.8rem; } }2. the quantity of post in homepage is controlled from your “Settings => Reading”. There is no option to controlled just for homepage.
3. I don’t get it what you mean rubric name.
Sakin
Keymaster@Makarov: Thanks for your appreciation. If you like my support and Catch Everest theme then please support by providing your valuable review at https://wordpress.org/support/view/theme-reviews/catch-everest?rate=5#postform
Sakin
Keymaster@dropswisdom: When you select “Excerpt” then it will show excerpt text and featured image. So, if you haven’t added in Featured image then you will not see image. So, add in featured image, refer to http://catchthemes.com/blog/videos-blog/video-series-adding-featured-image-wordpress-postpage/
October 26, 2015 at 11:18 pm in reply to: 1. header secondary menu in mobile 2. humbergar menu in desktop #78570Sakin
Keymaster@Kenta: Please post in your site URL and then I can check in.
October 26, 2015 at 11:17 pm in reply to: Problems with the template. Footer overlapping page. #78567Sakin
Keymaster@Alexander: You css needs to be as:
#feature-slider .entry-container, #feature-slider .entry-container:hover { display: none; }Sakin
Keymaster@dominique: Sorry there is no option for thumbnail on left and text on the right layout like in Catch Base theme. Every theme is designed differently.
The main difference is design and then features. For features, you can compare between from theme instructions
http://catchthemes.com/theme-instructions/catch-evolution-pro/
and
http://catchthemes.com/theme-instructions/catch-base-pro/Sakin
Keymaster@Vitaliy: Please post in your site URL and let me know you desire font size for homepage and rest of the pages. Then I can check in your site and send you custom css.
Sakin
KeymasterI see that you have code like this
<a target="_blank" href=""><a href="http://catchthemes.com/">Catch Themes</a></a>With you need to fixed by changing to:
<a target="_blank" href="http://catchthemes.com/">Catch Themes</a>Sakin
Keymaster@Makarov: You can replace your css:
#hgroup-wrap, .hentry, .comments-area article { padding-bottom: 0rem; padding-top: 0rem; padding-left: 0rem; padding-right: 0rem; }With the following:
#hgroup-wrap, .hentry, .comments-area article { padding: 0; }Then add the following css:
#site-logo { padding-top: 0; } -
AuthorPosts
