Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@lohanc: Thanks for your appreciation and if you like Catch Kathmandu Theme and Support then please support it by posting your review and rating at https://wordpress.org/support/view/theme-reviews/catch-kathmandu?rate=5#postform
Sakin
Keymaster@powwareherbie: I don’t get it what you mean. When I check in your site, I see that you have Open Sans for all heading tags as well as body text. So, can you explain what is you code and how are you trying to do it.
Sakin
Keymaster@Kim: I don’t see David in the list of Google Font, that is why it is not showing. For Google font list, check this https://www.google.com/fonts
Sakin
Keymaster@afeauto: Yes, Catch Base Pro theme is not yet WooCommerce ready. We are in the process of making it compatible with it soon. Till date, we only have 7 theme ready for WooCommerce http://catchthemes.com/themes/category/woocommerce-ready/ and we are in the process of making it ready for Catch Base Pro, Full Frame Pro, Catch Responsive Pro and Gridalicious Pro. The update will be released on Mid of June.
Sakin
Keymaster@Cattext: Yes, you just need to change that to
catchkathmandu_breadcrumb_displayBut we already have support for Breadcrumb NavXT plugin https://wordpress.org/plugins/breadcrumb-navxt/ . For this, you just need to activate the plugin and it will work fine.
Sakin
Keymaster@lohanc:
1. For this, find the following css in Custom CSS:@media screen and (min-width: 960px) { #site-title { font-size: 45px; } #site-description { font-size: 20px; } }Replace with:
@media screen and (min-width: 960px) { #site-title { font-size: 45px; line-height: 1; } #site-description { font-size: 20px; line-height: 1; } }Again, find the following css in Custom CSS:
/* Padding Above Site Title */ #hgroup { padding-top: 5px; }Replace with:
/* Padding Above Site Title */ #hgroup { padding-top: 8px; }2. For this, find the following css in Custom CSS:
#hgroup-wrap { padding-bottom: 5px; } /* Padding Below Site Description */ #hgroup-wrap { padding-bottom: 10px; }Replace with:
#hgroup-wrap { padding-bottom: 0; }3. You can add the following css in “Appearance => Theme Options => Custom CSS” box:
@media screen and (min-width: 1153px) { #secondary-menu ul.menu a { line-height: 40px; line-height: 4rem; padding-top: 0; padding-bottom: 0; } #secondary-menu ul.menu ul { top: 40px; } }4. Adding line in the featured content will not look good. To justify, you can add the following css in “Appearance => Theme Options => Custom CSS” box:
#featured-post .post { text-align: justify; }5. You can add the following css in “Appearance => Theme Options => Custom CSS” box:
#secondary-menu ul.menu a { font-weight: bold; }Sakin
Keymaster@Paul: Sorry there is no page template like that. If you want to hide it from custom css then please create page and then send me that page URL and will send you css to hide it.
Sakin
Keymaster@Juan: Thanks 🙂
Sakin
Keymaster@mosign: It depends on your site URL and Theme used. So, I need your site URL or at least your settings and theme used. Best will be to buzz me back when your site is online.
Sakin
Keymaster@johnbatt: Yes it happens like that. Your menu will not be lost, you just need to reassign it. Same with widgets. But all your content will be safe. This is normal and it’s WordPress. You can check this http://devotepress.com/wordpress-writing-editing/upgrade-premium-version-wordpress-themes-eg-adventurous-pro/
Sakin
Keymaster2. For this, you can add the following css in “Appearance => Theme Options => Custom CSS” box:
.header-sidebar .widget { clear: none; margin-right: 10px; }3. You can adjust the margin top and bottom as per you need to reduce the grey area and then add it in “Appearance => Theme Options => Custom CSS” box:
.site { margin-top: 40px; margin-bottom: 40px; }4. You can add the following css in “Appearance => Theme Options => Custom CSS” box:
#site-title, #site-description { float: left; }Sakin
Keymaster@mosign: Yes, for Catch Responsive Pro you can use http://catchthemes.com/support-forum/forum/catch-responsive-pro-premium/. But to change menu position, you can use the same code as below in Catch Responsive Pro child theme.
Sakin
Keymaster@machoyouk: It doesn’t matter if it’s page or post or category or link. You just count the number in which position that link is and then remove it.
For 1st, it will be:
#tinynav1 option:nth-child(1n) { display: none; }for 15th, it will be:
#tinynav1 option:nth-child(15n) { display: none; }Sakin
Keymaster@roderick: You can change the font size in the following css as per your need and then add it in “Appearance => Customize => Theme Options => Custom CSS Options” box:
/* For Site Title */ .site-title { font-size: 38px; } /* For Footer Text */ #site-generator { font-size: 13px; }Sakin
Keymaster@roderick: In Catch Responsive Pro theme, you can change the site tagline text color from “Appearance => Customize => Color Options => Header Color Options” and then change the color of “Tagline Color” and save it.
Sakin
Keymaster@Panayot: thanks and it’s great that your plugin developer fixed it.
Sakin
Keymaster@marksp: I check in your site from Firefox and it is showing no sidebar full width in your homepage. Can you upload screenshot and show me what’s not working in your browser.
May 23, 2015 at 10:48 pm in reply to: How to embed opt-in form in place of right header search bar #58206Sakin
Keymaster@greydoolin: Thanks for understanding and supporting us.
Sakin
Keymaster@Juan: We are doing fine and we are slowing recovering.
Yes, it will not take custom post type. For that you need to build child theme, refer to child theme at http://catchthemes.com/blog/create-child-theme-wordpress/
1. Then copy
catchbox_sliders()function to your child themefunctions.phpfile and then edit the following code:$get_featured_posts = new WP_Query( array( 'posts_per_page' => $postperpage, 'post__in' => $options[ 'featured_slider' ], 'orderby' => 'post__in', 'ignore_sticky_posts' => 1 // ignore sticky posts ));In the above code you need to add in post_type. So, it will be as below:
$get_featured_posts = new WP_Query( array( 'posts_per_page' => $postperpage, 'post_type' => 'post,events', 'post__in' => $options[ 'featured_slider' ], 'orderby' => 'post__in', 'ignore_sticky_posts' => 1 // ignore sticky posts ));Note: you need to change that events with your post type.
-
AuthorPosts
