Forum Replies Created

Viewing 20 posts - 1,801 through 1,820 (of 14,506 total)
  • Author
    Posts
  • in reply to: Create and/or remove the header for one page? #78697
    Sakin
    Keymaster

    @dbosworthstmtoolbox-org: You can add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:
    .page-id-1456 #masthead, .page-id-1456 .nav-primary { display: none; }

    in reply to: Adding Widget Area #78696
    Sakin
    Keymaster

    @Gregory: I see that you have added in the following CSS in Custom CSS box, which makes it solid color.
    #branding #access, #colophon #access-footer { background: none #205e1d; }

    Remove that.

    in reply to: Fav Icon Won't Show Up #78692
    Sakin
    Keymaster

    @Emanuel: Maybe you want to ask in that plugin support. It’s not theme issue.

    in reply to: Mobile Menu #78691
    Sakin
    Keymaster

    @Kim: Ok email me and then I can check that for you.

    in reply to: Increase body width/decrease sidebar width #78688
    Sakin
    Keymaster

    @KTR1982: You sire is not working. Please check in your site URl and let me know it.

    in reply to: Upgrading Pro 1.2 to 2.0 #78653
    Sakin
    Keymaster

    @birdpuk: There are two methods to update your theme A) From WordPress Dashboard and B) From FTP. You can read more about it from theme instructions at http://catchthemes.com/theme-instructions/catch-adaptive-pro/#updating

    A) From WordPress Dashboard:
    1. First you need to download “Catch Updater” plugin from http://catchthemes.com/wp-plugins/catch-updater/.
    2. Install and activate “Catch Updater” plugin from “Plugins => Add New => Uploads”
    2. Download the latest zip file from your account at http://catchthemes.com/my-account
    3. Finally upload the downloaded zip file from “Appearance => Themes => Add New => Uploads”

    B) From FTP:
    1. Download the latest zip file from your account at http://catchthemes.com/my-account
    2. Unzip/Extract that zip file
    3. Using an FTP client to access your host web server, go to /wp-content/themes/ and upload your new copy of Catch Adaptive Pro Theme which shall replace the old files

    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.

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