Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@bigoslesli: Thanks for your help
Sakin
Keymaster@Lisa: Sorry that is not possible with this theme options. It’s not designed for that. If you really want then you can do that by hiring developer to build child theme http://catchthemes.com/blog/create-child-theme-wordpress/ and then in your child theme you can do your customization.
I can suggest you one ticket but not sure if this will work as per your need or not. So, if this doesn’t work then hire developer to work on it.
1. First add widget in your Header Top Sidebar and Header Right Sidebar from “Appearance => Widgets”. Once, you have widgets in these both places. I am going to make this header top sidebar as Left header and Header Right Sidebar as right header.
2. Then you can add the following css in “Appearance => Theme Options => Custom CSS” box:/* Left and Right Header Sidebar Custom CSS */ #header-top { float: left; width: 25%; } #header-top .container { padding: 0 30px; } #header-top .container .widget { float: left; } #hgroup-wrap { clear: none; float: right; padding-left: 0; padding-right: 0; width: 75%; } #header-left { width: 65%; } #header-right { width: 35%; } #header-right .widget { padding: 0 30px; } #secondary-menu { clear: both; } /* Responsive Mobile to make it 100% */ @media screen and (max-width: 960px) { #header-top, #hgroup-wrap, #header-left, #header-right { clear: both; width: 100%; } #header-top .container .widget { float: none; } }Sakin
Keymaster@Ellen: Thanks a lot for choosing Create Pro and Catch Themes as your preferred theme. It’s really nice to see good website build on it. Really awesome. Congratulations 🙂
Sakin
Keymaster@Wade: Sorry we haven’t look at team members plugin much. For plugins, there are lot of options that you can choose. You can select from https://wordpress.org/plugins/search.php?q=team+members.
Maybe you are recommend one to use after you try it. Then we will add support for that plugin 🙂
Sakin
Keymaster@Gunter:
1. I am bit confused about this. Which background are you talking about? Also if you are using Catch Kathmandu Pro theme then you can change that background color from “Appearance => Theme Options => Color Options => Menu Color Options”. There you can change primary menu color and save changes.2. You can adjust the padding and font size in the following css to adjust the button size in Homepage Headline. Then add it in “Appearance => Theme Options => Custom CSS” box:
#homepage-message .right-section a { font-size: 26px; padding: 10px 30px; }Sakin
Keymaster@Sandra1970: Thanks for your appreciation.
Sakin
Keymaster@Kim: Nice you fixed it.
Sakin
Keymaster@Kim: It’s not no way. It will be hard way. You need to build child theme and do high level of customization. So, you need to hire developer for this.
Sakin
Keymaster@luismarioochoa:
1. You can add the following css in “Appearance => Theme Options => Custom CSS” box:#slider .slider-title { font-weight: bold; } #slider .sep { display: none; } #slider .slider-excerpt { clear: both; display: inline-block; }2. Just change the font size in the following css as per your need and then add it in “Appearance => Theme Options => Custom CSS” box:
#slider-wrap .featured-text { font-size: 14px; }3. If you want to remove the slider excerpt then please remove the following css from answer 1. That is
#slider .slider-excerpt { clear: both; display: inline-block; }
Then add the following css instead:
#slider .slider-excerpt { display: none; }February 13, 2015 at 12:56 am in reply to: Category only displays first 1-2 posts in Catch Everest (free) #51603Sakin
Keymaster@FinnJackson: No need to pay if you are happy with the free version. I will provide support for both free and paid version. But I don’t understand your issue in Case Study category. It is displaying 10 posts. Can you explain please?
Sakin
Keymaster@pellinor: Sorry this cannot be done with basic css. For this, you need to build child theme and move the potions. It’s really hard and can only be possible my high level of customization. So, you need to hire developer for this to work on it.
Sakin
Keymaster@Kim: If you want to reduce the margin-bottom of image align left then you can add the following css in “Appearance => Theme Options => Custom CSS” box:
img.alignleft { margin-bottom: 10px; }Sakin
Keymaster@Tessil J: Do you have any cache in your browser? Can you refresh your browser and check in. As when I check in your site the latest in Fea News is February 11, 2015
Sakin
Keymaster@Joseph: Please post in your gallery page URL so that I can check in and give you suggestion.
Sakin
Keymaster@teddiebozh: Sorry I don’t know how can I help you with. Maybe you can hire developer to look at it. I just provide basic support for the theme.
I see that you can add custom background image from “Appearance => Background”
Rest as per my view, your site is nice.
Sakin
Keymaster@Joseph: Yes, I can help. But for that you need to send me the URL of your gallery page where you have issue. Then I can check in.
Sakin
Keymaster@B1ngle: Sorry this theme doesn’t have Parallax effect. So, yes you have create child theme and do the custom coding or try plugin. See these plugin https://wordpress.org/plugins/search.php?q=parallax
Sakin
KeymasterHello All,
Sorry for all the trouble. We are desperately waiting for the update from WordPress Review to get our Catch Box 3.4.2 live soon so that you can directly update from your WordPress Dashboard.
But for now, you can download zip file of Catch Box 3.4.2 from http://bit.ly/cbox342 . If you know the FTP then you can just upload it manually. But if you want to upload from WordPress Dashboard, then you need to upload the theme using Catch Update plugin http://catchthemes.com/wp-plugins/catch-updater/. The update instructions is give in Catch Updater plugin page.
Sakin
KeymasterSorry all. We are in the process of fixing the issue. But we have no control of free version update. So, we have to wait for WordPress Team to get it approved. We have prepared the patch in version 3.4.2 which is already schedule for release after WordPress update. For now, can you open the file
functions.phpand go to line no 715. You will see the following code:if ( ! function_exists( 'catchbox_body_classes' ) ) : /** * Adds two classes to the array of body classes. * The first is if the site has only had one author with published posts. * The second is if a singular post being displayed * * @since Catch Box 1.0 */ function catchbox_body_classes( $classes ) { $options = catchbox_get_theme_options(); $layout = $options['theme_layout']; if ( function_exists( 'is_multi_author' ) && !is_multi_author() ) { $classes[] = 'single-author'; } if ( $layout == 'content-sidebar' && !is_page_template( 'page-disable-sidebar.php' ) && !is_page_template( 'page-fullwidth.php' ) && !is_page_template( 'page-onecolumn.php' ) ) { $classes[] = 'content-sidebar'; } elseif ( $layout == 'sidebar-content' && !is_page_template( 'page-disable-sidebar.php' ) && !is_page_template( 'page-fullwidth.php' ) && !is_page_template( 'page-onecolumn.php' ) ) { $classes[] = 'sidebar-content'; } elseif ( $layout == 'content-onecolumn' || is_page_template( 'page-onecolumn.php' ) && !is_page_template( 'page-disable-sidebar.php' ) && !is_page_template( 'page-fullwidth.php' ) ) { $classes[] = 'content-onecolumn'; } elseif ( is_page_template( 'page-disable-sidebar.php' ) || is_attachment() ) { $classes[] = 'singular'; } elseif ( is_page_template( 'page-fullwidth.php' ) || is_attachment() ) { $classes[] = 'fullwidth'; } return $classes; } endif; // catchbox_body_classesReplace the code with the following code:
if ( ! function_exists( 'catchbox_body_classes' ) ) : /** * Adds two classes to the array of body classes. * The first is if the site has only had one author with published posts. * The second is if a singular post being displayed * * @since Catch Box 1.0 */ function catchbox_body_classes( $classes ) { $options = catchbox_get_theme_options(); $layout = $options['theme_layout']; if ( function_exists( 'is_multi_author' ) && !is_multi_author() ) { $classes[] = 'single-author'; } if ( $layout == 'content-sidebar' && !is_page_template( 'page-disable-sidebar.php' ) && !is_page_template( 'page-fullwidth.php' ) && !is_page_template( 'page-onecolumn.php' ) ) { $classes[] = 'right-sidebar'; } elseif ( $layout == 'sidebar-content' && !is_page_template( 'page-disable-sidebar.php' ) && !is_page_template( 'page-fullwidth.php' ) && !is_page_template( 'page-onecolumn.php' ) ) { $classes[] = 'left-sidebar'; } elseif ( $layout == 'content-onecolumn' || is_page_template( 'page-onecolumn.php' ) && !is_page_template( 'page-disable-sidebar.php' ) && !is_page_template( 'page-fullwidth.php' ) ) { $classes[] = 'no-sidebar one-column'; } elseif ( is_page_template( 'page-disable-sidebar.php' ) || is_attachment() ) { $classes[] = 'no-sidebar'; } elseif ( is_page_template( 'page-fullwidth.php' ) || is_attachment() ) { $classes[] = 'no-sidebar full-width'; } return $classes; } endif; // catchbox_body_classesSakin
Keymaster@Evelien: To change the background color of fixed header top bar, you can change the color code in the following css and then add it in “Appearance => Theme Options => Custom CSS” box. If you want transparent background like the demo page, then you can use RGBA color with opacity otherwise you can add solid color. That’s your choice.
#header-top { background: #fff; /* Old Browser Solid Color */ background: rgba(255, 255, 255, 0.7); } -
AuthorPosts
