Forum Replies Created
-
AuthorPosts
-
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; }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 titlewhere as
.entry-title, .entry-title a is for page/post title with link or without linkSakin
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%; } }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.
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.
Sakin
Keymaster@Julia: You can see it’s showing in your blog http://julesferne.com/category/all-adventure-files/
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.
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/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.
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;} }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.phpfile/** * 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; } }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.
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
Sakin
Keymaster@Sebastian: Please post in your intro page URL.
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; }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.
April 21, 2015 at 6:35 pm in reply to: Remove Page Name and Excerpt from Featured Slider Image #56330Sakin
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; }April 21, 2015 at 6:32 pm in reply to: qTranslate-X not working on the featured slider preview text.. #56329Sakin
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' ); } -
AuthorPosts
