Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@cblossants: Thanks and if you like Catch Responsive and support then please write in review and rating at WordPress.org https://wordpress.org/support/view/theme-reviews/catch-responsive?rate=5#postform
Sakin
Keymaster@Sebastian: If you set it as Frontpage, then your intro page will load it below the featured content. But to load before front page, you need to add plugin. Try searching for plugin with keyword splash or intro page.
Sakin
Keymaster@cblossants: There is problem with your child theme style.css. There is missing opening
/*and closing*/before your child theme declaration. It should be as below:/* Theme Name: Catch Responsive Child Theme Theme URI: http://doreide.com/test_wp/wp-content/themes/catch-responsive-child Author: Catch Themes Team Author URI: http://catchthemes.com Description: Catch Responsive is an extremely flexible and customizable WordPress theme suitable for almost any kind of professional website. It is based on responsive design where each element has been carefully configured for perfect display on all devices and platforms. It is built in HTML5, CSS3 and WordPress Theme Customizer for real time customization. It comes with a wide variety of options so you can modify layout, styling, featured content, promotion headline, featured slider, pagination, icons, menus, breadcrumb, widgets and much more, directly from theme customizer. This theme is translation ready and also currently translated in Swedish. Check out Theme Instructions at http://catchthemes.com/theme-instructions/catch-responsive/, Support at http://catchthemes.com/support/ and Demo at http://catchthemes.com/demo/catch-responsive/ Version: 1.0 License: GNU General Public License, version 3 (GPLv3) License URI: http://www.gnu.org/licenses/gpl-3.0.txt Tags: black, gray, silver, white, dark, light, one-column, two-columns, left-sidebar, right-sidebar, fixed-layout, fluid-layout, responsive-layout, custom-background, custom-colors, custom-header, custom-menu, editor-style, featured-image-header, featured-images, flexible-header, front-page-post-form, post-formats, sticky-post, theme-options, threaded-comments, translation-ready Text Domain: catchresponsive Template: catch-responsive */Sakin
Keymaster@claudi: Please post in your side URL so that I can check in what’s there in your rest of the page. In homepage as well you can add widget in sidebar. That should not be a problem.
Sakin
Keymaster@Consciousness: Please post in your site URL here and then I can check that for you. It’s not theme issue, as you can see demo in our site is working fine http://catchthemes.com/demo/catch-evolution/. Also you can check demo from WordPress.org official demo site http://wp-themes.com/catch-evolution/
Sakin
Keymaster@knudkp: Try adding in the following css in “Appearance => Customize => Theme Options => Custom CSS” box:
#supplementary .widget { padding-top: 0; padding-bottom: 0; }Sakin
Keymaster@name: Thanks for your appreciation and if you like Catch Base theme and support that I provided you. Please provide your valuable review and rating at https://wordpress.org/support/view/theme-reviews/catch-base?rate=5#postform. Thanks 🙂
Sakin
Keymaster@name: Yes, as you are using No Sidebar, Content Width layout. Yes, you don’t need to change global content_width variable. You need to add the above code catchbase_content_width() which I gave you. There in that functions, I just change width for No Sidebar, Content Layout. The following code is extra in that function:
if ( $layout == 'no-sidebar' || ( $layout=='default' && $themeoption_layout == 'no-sidebar' ) ) { $content_width = 920; }Sakin
Keymaster@Sebastian: Ok for that you can simply add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:
.page-id-158 .site { padding-top: 0; } .page-id-158 #fixed-header, .page-id-158 #masthead { display: none; }Sakin
Keymaster@Denys: Thanks for your access and cooperation. I check in your site and found that you have large image as background image and also 8 slider image which was making your site heavy and the slider code checks height after the slider is fully loaded. So, it take time to clear the height. So, I need to set
data-cycle-loader="true"which will start slider after 2 images is loaded in slider. Then I see that you were using child theme. So, I simply added in the following code in your child theme functions.php file./** * Add slider. * * @uses action hook catchbase_before_content. * * @since Catch Base 1.0 */ function catchbase_featured_slider() { global $post, $wp_query; //catchbase_flush_transients(); // get data value from options $options = catchbase_get_theme_options(); $enableslider = $options['featured_slider_option']; $sliderselect = $options['featured_slider_type']; // Get Page ID outside Loop $page_id = $wp_query->get_queried_object_id(); // Front page displays in Reading Settings $page_on_front = get_option('page_on_front') ; $page_for_posts = get_option('page_for_posts'); if ( $enableslider == 'entire-site' || ( ( is_front_page() || ( is_home() && $page_for_posts != $page_id ) ) && $enableslider == 'homepage' ) ) { if( ( !$catchbase_featured_slider = get_transient( 'catchbase_featured_slider' ) ) ) { echo '<!-- refreshing cache -->'; $catchbase_featured_slider = ' <section id="feature-slider"> <div class="wrapper"> <div class="cycle-slideshow" data-cycle-log="false" data-cycle-pause-on-hover="true" data-cycle-swipe="true" data-cycle-loader="true" data-cycle-auto-height=container data-cycle-fx="'. $options['featured_slide_transition_effect'] .'" data-cycle-speed="'. $options['featured_slide_transition_length'] * 1000 .'" data-cycle-timeout="'. $options['featured_slide_transition_delay'] * 1000 .'" data-cycle-slides="> article" > <!-- prev/next links --> <div class="cycle-prev"></div> <div class="cycle-next"></div> <!-- empty element for pager links --> <div class="cycle-pager"></div>'; // Select Slider if ( $sliderselect == 'demo-featured-slider' && function_exists( 'catchbase_demo_slider' ) ) { $catchbase_featured_slider .= catchbase_demo_slider( $options ); } else if ( $sliderselect == 'featured-post-slider' && function_exists( 'catchbase_post_slider' ) ) { $catchbase_featured_slider .= catchbase_post_slider( $options ); } elseif ( $sliderselect == 'featured-page-slider' && function_exists( 'catchbase_page_slider' ) ) { $catchbase_featured_slider .= catchbase_page_slider( $options ); } elseif ( $sliderselect == 'featured-category-slider' && function_exists( 'catchbase_category_slider' ) ) { $catchbase_featured_slider .= catchbase_category_slider( $options ); } elseif ( $sliderselect == 'featured-image-slider' && function_exists( 'catchbase_image_slider' ) ) { $catchbase_featured_slider .= catchbase_image_slider( $options ); } $catchbase_featured_slider .= ' </div><!-- .cycle-slideshow --> </div><!-- .wrapper --> </section><!-- #feature-slider -->'; set_transient( 'catchbase_featured_slider', $catchbase_featured_slider, 86940 ); } echo $catchbase_featured_slider; } }Note: for child theme and sample child theme you can refer to http://catchthemes.com/blog/create-child-theme-wordpress/
Sakin
KeymasterHello Lisa,
Ok then try adding in the following css in “Appearance => Theme Options => Custom CSS” box:
.events-archive #primary { margin-left: 0; width: 100%; }Regards,
SakinSakin
Keymaster@cblossants: I don’t see #gallery_mobile in your site. Can you let me know what are you trying to do it.
Sakin
Keymaster@bigoslesli: It should be log first and then title. If this is not happening then check your settings at “Appearance => Theme Options => Header Options => Move Site Title and Tagline”.
Sakin
Keymaster@Denys: I will not be able to access your site without being live. Ok I will send you email.
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.
-
AuthorPosts
