Forum Replies Created

Viewing 20 posts - 1,801 through 1,820 (of 14,500 total)
  • Author
    Posts
  • in reply to: Update failure to 3.0 #78652
    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”

    in reply to: Fav Icon Won't Show Up #78617
    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.

    in reply to: responsive.css #78616
    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.css then 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.css and functions.php file 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 add responsive.css file.

    Then, you need to add the following code in your functions.php file 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 );
    in reply to: Adding Widget Area #78615
    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.php file

    /**
     * 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;
    }
    in reply to: How to remove the words "Catch Responsive by Catch Themes" #78614
    Sakin
    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/

    in reply to: Remove spaces (margins) from header #78613
    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; }

    in reply to: Slider Transition Effect #78612
    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

    Sakin
    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;
    }
    in reply to: Big Image in Featured Slider #78596
    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.

    in reply to: Font size of post title on Home page #78595
    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.

    in reply to: Remove spaces (margins) from header #78593
    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

    in reply to: Upgrade to Pro faies! #78591
    Sakin
    Keymaster

    @david: That’s nice and thanks for sharing 🙂

    in reply to: Excerpts missing photos #78572
    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/

    Sakin
    Keymaster

    @Kenta: Please post in your site URL and then I can check in.

    in reply to: Problems with the template. Footer overlapping page. #78567
    Sakin
    Keymaster

    @Alexander: You css needs to be as:

    #feature-slider .entry-container,
    #feature-slider .entry-container:hover {
          display: none;
    }
    in reply to: feature image smaler and texte on the right #78564
    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/

    in reply to: logo aligned to menu #78563
    Sakin
    Keymaster

    @isabella: Please post in your site URL so that we can check in.

    in reply to: Font size of post title on Home page #78562
    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.

    in reply to: Credits on footer #78561
    Sakin
    Keymaster

    I see that you have code like this
    <a target="_blank" href=""><a href=&quot;http://catchthemes.com/&quot;>Catch Themes</a></a>

    With you need to fixed by changing to:
    <a target="_blank" href="http://catchthemes.com/">Catch Themes</a>

    in reply to: Remove spaces (margins) from header #78560
    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; }

Viewing 20 posts - 1,801 through 1,820 (of 14,500 total)