Forum Replies Created

Viewing 20 posts - 4,021 through 4,040 (of 14,509 total)
  • Author
    Posts
  • in reply to: Remove Title and Excerpt on Featured Slider #56364
    Sakin
    Keymaster

    @knudkp: I don’t know what are you trying to do. That is for slider container.

    in reply to: Menu color #56362
    Sakin
    Keymaster

    @eckh20: You are using Catch Responsive free theme and it doesn’t have color option for menu to change it. You are posting it in Catch Responsive Pro theme support forum where as for Catch Responsive free you need to post in http://catchthemes.com/support-forum/forum/catch-responsive-free/

    For free version, you can add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:

    .nav-primary { background-color: #366488; }
    .catchresponsive-nav-menu li a:hover,
    .catchresponsive-nav-menu li a:focus {
    	background-color: #fff;
    	color: #366488;
    }
    .catchresponsive-nav-menu li:hover > a  {
    	background-color: #fff;
    	color: #366488;
    }
    .catchresponsive-nav-menu .current-menu-item > a, 
    .catchresponsive-nav-menu .current-menu-ancestor > a {
    	background-color: #fff;
    	color: #366488;
    }
    .catchresponsive-nav-menu .sub-menu li a:hover,
    .catchresponsive-nav-menu .sub-menu li a:focus {
    	background-color: #366488;
    	color: #fff;
    }
    in reply to: Change font color off the post titles #56361
    Sakin
    Keymaster

    @JDC: For category page title, you can add the following css:
    .page-header .page-title { color: #604187}

    I don’t know how to explain difference. It’s totally different elements.
    .entry-header is for header element
    .widget-title is for widget title
    .entry-title if for page/post title

    where as
    .entry-title, .entry-title a is for page/post title with link or without link

    in reply to: Responsive not working #56359
    Sakin
    Keymaster

    @Dona: You have added in wrong CSS. I told you to add in

    @media screen and (max-width: 767px) {
        .page-id-277 #content .alignleft {
            display: block;
            float: none;
            margin: 0 auto;
            max-width: 217px;
            width: 100%;
        }
    }

    But why did you add in with image:

    @media screen and (max-width: 767px) {
        .page-id-277 http://higherhealthllc.com/wp-content/uploads/2015/03/productsbackground-copy.png .alignleft {
            display: block;
            float: none;
            margin: 0 auto;
            max-width: 217px;
            width: 100%;
        }
    }
    in reply to: Home Page Load Problem #56357
    Sakin
    Keymaster

    @Denys: First please send me your site URL then I can check in and if needed I will ask for login. Also can you check in demo site and see if it works fine or not.

    in reply to: Archive Content Layout – not available #56355
    Sakin
    Keymaster

    @Julia: Oh that Archive Content layout is only for Archive like Category, tag and so on. It’s not for page. You can change that from “Appearance => Theme Options => Layout Options => Archive Content Layout”.

    About your blog page post. I need to check in your site and then find out the issue. I am bit lost. So, I will email you.

    in reply to: No post except thumbnails on category/archive pages #56354
    Sakin
    Keymaster

    @Julia: You can see it’s showing in your blog http://julesferne.com/category/all-adventure-files/

    in reply to: Insert media at new message #56353
    Sakin
    Keymaster

    @fcourtois: It’s strange as it’s working fine in our server with Gridalicious 1.0. So, I might need to check in your site. I will email you personally.

    in reply to: Blog page set up #56352
    Sakin
    Keymaster

    @lorencowka:
    1. Sorry, this falls under plugin Territory. So, you need to search for plugin to do that.
    2. This I am not sure what you mean. We can try Jetpack plugin comment form if you are talking about form to be shorten. It will be like this http://jetpack.me/support/comments/

    in reply to: I think I just broke the page :D #56351
    Sakin
    Keymaster

    @Reitsel: It shouldn’t be a theme issue. Looks like there is something with plugin. Try manually resetting your plugins (no Dashboard access required). See this https://codex.wordpress.org/FAQ_Troubleshooting#How_to_deactivate_all_plugins_when_not_able_to_access_the_administrative_menus.3F That should allow you to access your Dashboard again. If so, reactivate each plugin individually until you identify the one causing the problem.

    in reply to: Primary & Secondary widths not working responsive #56347
    Sakin
    Keymaster

    @penny: Replace that css with the following css in “Appearance => Theme Options => Custom CSS” box:

    @media screen and (min-width: 961px) {
        #primary { width: 585px; }
        #secondary {width: 250px;}
    }
    @media screen and (min-width: 991px) {
        #primary {width: 635px;}
    }
    @media screen and (min-width: 1025px) {
        #primary {width: 660px;}
    }
    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; }

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