Forum Replies Created

Viewing 20 posts - 4,021 through 4,040 (of 14,498 total)
  • Author
    Posts
  • in reply to: Can't increase $content_width in child theme #56345
    Sakin
    Keymaster

    @name:
    1. For child theme and sample Catch Base child theme, you can download it from http://catchthemes.com/blog/create-child-theme-wordpress/.

    2. Then add the following code in your child theme functions.php file

    /**
     * Loading Content Width
     */
    function catchbase_content_width() {
    	global $post, $wp_query, $content_width;
    
    	//Getting Ready to load options data
    	$options					= catchbase_get_theme_options();
    	
    	$themeoption_layout 		= $options['theme_layout'];
    	
    	// Front page displays in Reading Settings
    	$page_on_front = get_option('page_on_front') ;
    	$page_for_posts = get_option('page_for_posts');
    
    	// Get Page ID outside Loop
    	$page_id = $wp_query->get_queried_object_id();
    
    	// Blog Page or Front Page setting in Reading Settings
    	if ( $page_id == $page_for_posts || $page_id == $page_on_front ) {
            $layout 		= get_post_meta( $page_id,'catchbase-layout-option', true );
        }
    	elseif ( is_singular() ) {
     		if ( is_attachment() ) { 
    			$parent = $post->post_parent;
    			
    			$layout = get_post_meta( $parent,'catchbase-layout-option', true );
    		} 
    		else {
    			$layout = get_post_meta( $post->ID,'catchbase-layout-option', true ); 
    		}
    	}
    	else {
    		$layout='default';
    	}
    
    	//check empty and load default
    	if( empty( $layout ) ) {
    		$layout = 'default';
    	}
    
    	if ( $layout == 'no-sidebar' || ( $layout=='default' && $themeoption_layout == 'no-sidebar' ) ) {
    		$content_width = 920;
    	}
    	elseif ( $layout == 'right-sidebar' || $layout == 'left-sidebar' || ( $layout=='default' && $themeoption_layout == 'right-sidebar' ) || ( $layout=='default' && $themeoption_layout == 'left-sidebar' ) ) {
    		$content_width = 780;
    	}	
    }

    Then add the following css in your child theme style.css

    @media screen and (min-width: 940px) {
    	.no-sidebar.content-width #main {
    		width: 920px;
    	}
    }
    in reply to: Change Header Url #56341
    Sakin
    Keymaster

    @sobelsaint: Sorry I don’t get it what you mean properly. If you want to move your site from subdomain to main domain then you need to move all files and folder and then you need to do search and replace for your database. You can use tool like this https://interconnectit.com/products/search-and-replace-for-wordpress-databases/, which allows you to do serialized search and replace in your database.

    This is more of domain transfer then do WordPress theme. So, you might better consult with your hosting server support. If you have problem then they can do that for your instantly.

    in reply to: Remove Dark Text Box Over Slider #56340
    Sakin
    Keymaster

    @Carolina: Thanks for your appreciation. If you like Catch Evolution theme and support then please support it by providing your valuable review and rating at https://wordpress.org/support/view/theme-reviews/catch-evolution?rate=5#postform

    in reply to: Intro Page and some other questions… #56339
    Sakin
    Keymaster

    @Sebastian: Please post in your intro page URL.

    in reply to: Change font color off the post titles #56337
    Sakin
    Keymaster

    @JDC: You can add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:

    .entry-title, .entry-title a {
        color: #604187;
    }
    in reply to: Logo & Titles #56334
    Sakin
    Keymaster

    @bigoslesli:
    1. For logo, you can add the following css in “Appearance => Theme Options => Custom CSS” box:

    @media
    screen and (min-width: 768px) {
    #site-logo, #hgroup {
    display: inline-block;
    float: left;
    }
    #hgroup {
    margin-left: 15px;
    }
    }

    2. Background, you found it. That’s cool.

    3. About the separator in menu. I am bit confused as your site it not yet live to see. As you can see in demo http://catchthemes.com/demo/catchbox-pro/. Both primary menu and footer menu are same.

    in reply to: Remove Page Name and Excerpt from Featured Slider Image #56330
    Sakin
    Keymaster

    @JEmma2314: If you want to hide full text then you can add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:
    #feature-slider .entry-container { display: none; }

    But if you just want to hide page title, then add the following css instead:
    #feature-slider .entry-header { display: none; }

    Sakin
    Keymaster

    @Sebastian: For that you need to build child theme and then add the following code in your child theme functions.php file. For child theme check out http://catchthemes.com/blog/create-child-theme-wordpress/

    /**
     * Remove Slider cahce in qTranslate-X plugin 
     */	
    if ( defined( 'QTX_VERSION' ) ) {
    	delete_transient( 'fullframe_featured_slider' );
    }
    in reply to: Remove Dark Text Box Over Slider #56328
    Sakin
    Keymaster

    @Carolina: You can hide that by adding in the following css in “Appearance => Theme Options => Custom CSS” box:
    #slider-wrap .featured-text { display: none; }

    in reply to: Remove Email From Blog Posts #56327
    Sakin
    Keymaster

    @Carolina: Actually that is your Display name publicly as in “Users => Your Profile”. You can change that to any you like. But if you want to remove then you can add the following css in “Appearance => Theme Options => Custom CSS” box:
    .by-author { display: none; }

    in reply to: Featured post as widget on sidebar #56325
    Sakin
    Keymaster

    @alphaxyz: Then you can select “Featured Category Content” from “Appearance => Customize => Featured Content Options => Featured Content Type”. Then you can just add in “No of Featured Content” to 20 and select the category. So, it will display the latest 20 posts automatically from the selected categories.

    in reply to: Simple Catch Pro – Full Width Template #56322
    Sakin
    Keymaster

    Hello Lisa,

    Yes, there is full width layout option that you can change for particular page. Just edit that page and below your page editor you will see “Simple Catch Options” metabox, there you will see “Sidebar Layout Options” and you can change that to “No sidebar, Full Width” and update your page.

    Note: Your event page has missing closing div for main wrapper and it is destroying design of footer.

    Regards,
    Sakin

    in reply to: Increasing size of featured content and font #56319
    Sakin
    Keymaster

    @amyfanton: Ok then replace the previous css with the following css:

    @media screen and (min-width: 1001px) {
        #featured-post {
            margin-left: -30px;
            margin-right: -30px;
        }
        #featured-post .post.layout-four {
            margin: 0;
            padding: 0 0.5%;
            width: 24%;
        }
    }
    @media screen and (min-width: 1021px) {
        #featured-post {
            margin-left: -40px;
            margin-right: -40px;
        }
    }
    @media screen and (min-width: 1190px) {
        #featured-post {
            margin-left: -50px;
            margin-right: -50px;
        }
    }
    in reply to: Can't format the text in the sliders #56314
    Sakin
    Keymaster

    @innova: Please post in your site URL so that I can check in.

    in reply to: media query in child theme #56313
    Sakin
    Keymaster

    @cblossants: It should work fine. Can you send me your site URL so that I can check in.

    in reply to: Change Copyright Site Title #56269
    Sakin
    Keymaster

    @schlab0: Can you add this code in your functions.php file and then refresh your browser. It should work and after that you can remove that code.
    delete_transient( 'catchevolution_footer_content_new' );

    in reply to: Intro Page and some other questions… #56267
    Sakin
    Keymaster

    @Sebastian: Sorry my mistake, you can add the following css instead:
    .home #content { display: none; }

    in reply to: Masthead/Mobile Menu Icon Height #56266
    Sakin
    Keymaster

    @JDC: You can just add the following css in “Appearance => Theme Options => Custom CSS” box:

    #masthead { padding: 0; }
    #site-branding, .sidebar-header-right { display: none; }
    in reply to: Center Items in Top Menu #56265
    Sakin
    Keymaster

    @Jesse: No Problem 🙂

    in reply to: Can't format the text in the sliders #56264
    Sakin
    Keymaster

    @innova: In Catch Kathmandu Pro theme there are 4 different slider type, that is Page Slider, Post Slider, Category Slider and Image Slider. So, which slider you are working on. If you use post slider then it will take the featured image, title and excerpt content of that post. See this http://catchthemes.com/blog/videos-blog/video-series-adding-featured-post-slider/. If you use the image slider, then you can add in image, title and content as per your need. See this http://catchthemes.com/blog/videos-blog/video-series-adding-featured-image-slider/. So, which ever you choose, it will be like demo slider.

    For more check out theme instructions page at http://catchthemes.com/theme-instructions/catch-kathmandu-pro/

Viewing 20 posts - 4,021 through 4,040 (of 14,498 total)