Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@luismarioochoa:
1. You can add the following css in “Appearance => Theme Options => Custom CSS” box:
#header-content { padding-bottom: 0; }2. I am confused to this. You can upgrade to pro version to get full color option and change the color as per your need. If you want to match your header image black color with the header background then you can add the following css in “Appearance => Theme Options => Custom CSS” box:
#branding { background-color: #202020; }3. You can add the following css in “Appearance => Theme Options => Custom CSS” box:
#content nav#nav-slider { display: none; }4. In responsive design, it’s not possible to make that.
January 16, 2015 at 11:17 pm in reply to: How do I change default Image sizes in Blog listings? #50130Sakin
Keymaster@Consciousness: Cropping is not custom css. But you can change the by building child theme. Read more detail about child theme from http://catchthemes.com/blog/create-child-theme-wordpress/ and you can also download sample child theme. Then you can add the following code in your child theme functions.php file and change the image size where 754 is the width and 400 is the height.
function catchevolution_child_theme_setup() { add_image_size( 'featured-slider', 754, 400, true ); } add_action( 'after_setup_theme', 'catchevolution_child_theme_setup', 11 );after you add this code, for all older post, you need to regenerate thumbnail and for new post it will be automatic. To regenerate the thumbnail in older post you can install Regenerate Thumbnail plugin.
Sakin
Keymaster@reefadmin: That’s not possible with custom css. You need to add custom code by building child theme, which is complicated and you need to hire customizer to work on it.
Sakin
Keymaster@Doug: For that you need to add space below your slider. So, you can add the padding-bottom. Just add the following css in “Appearance => Theme Options => Custom CSS” box:
#main-slider { padding-bottom: 40px; }Sakin
Keymaster@Jacopo: For large screen, you can add the following css in “Appearance => Theme Options => Custom CSS” box:
#site-logo, #header-left { width: 100%; } #hgroup-wrap img { margin: 0 auto; }Sakin
Keymaster@stepawayfromthecarbs: You need to check the option below “Notify me of follow-up replies via email” before you submit the question to get notification.
January 16, 2015 at 5:31 pm in reply to: Problem can't find the solution to remove this need help #50115Sakin
Keymaster@Alain: Did you fix this issue? As I just check in your site and I don’t see any missing image like that. That issue can happen only when your site doesn’t find Header Featured Image URL. So, go to “Appearance => Theme Options => Header Featured Image Options” and in “Enable Featured Header Image” check the option “Disable” when you don’t want image.
Sakin
Keymaster@luismarioochoa: There is no option to add logo bellow the header image. It’s a different logic. That is why I showed you option to build child theme and code for your child them. Can you show me what you have added. Can you paste your child theme functions.php and style.css in https://gist.github.com/ and post the link here.
In the above code for your child theme functions.php, did you change the image URL and alt text. Yes, Child theme will work in Pro version as well. Just that you need to change a little bit. You see all samples in http://catchthemes.com/blog/create-child-theme-wordpress/
January 16, 2015 at 12:55 am in reply to: How to reduce the home page main content font size? #50095Sakin
Keymaster@harish: I see that you have added content in “Appearance => Theme Options => Promotion Headline Options”. We have created this area just for few line of bold promotion text. That is why the font is bigger. So, if you want normal font size text in homepage, then disable that Promotion Headline. You can set static front page and add content in that page. So, just create a page and write in content. Then go to “Settings => Reading” and in “Front page displays”, check option “A static page (select below)” and select the page that you want to show in home from “Front page”
Sakin
Keymaster@harish: Do you mean “No Sidebar, Full Width” layout as shown in demo page http://catchthemes.com/demo/adventurous/sidebar-layout/no-sidebar-full-width/. This option is only there in Adventurous Pro version. So, you need to upgrade it. For more details about pro version, check our theme instructions page at http://catchthemes.com/theme-instructions/adventurous-pro
Sakin
Keymaster@level7tech: Ok since you are in Excerpt/Blog layout. It will disable the featured image and excerpt text. If there is Featured image and text in the post. To add featured image check out http://catchthemes.com/blog/videos-blog/video-series-adding-featured-image-wordpress-postpage/
But if it doesn’t have excerpt text then it will display full content. So, it is displaying your image and videos. But you can change that layout to “Full Content Display”. Which will display your video and image even after you add in the content. Then you can use more tag to split content to show in archive/blog. For more tag, read this http://en.support.wordpress.com/splitting-content/more-tag/
Sakin
KeymasterHello Daniel,
Sorry I don’t know about migrating from Blogger to WordPress. Yes, you can import post from “Tools => Import =? Blogger”. But you shouldn’t edit functions.php file from your editor.
Maybe you want to check this article wpbeginner.com/wp-tutorials/how-to-switch-from-blogger-to-wordpress-without-losing-google-rankings/
Regards,
SakinSakin
KeymasterHello Daniel,
You shouldn’t edit/add any file inside your theme folder ‘adventurous-pro’. As all these edits will be reverted back to original when you update the theme and you will loose your customization. So, if you want to edits just css then you can use “Appearance => Theme Options => Custom CSS” and if you want to edit large level of CSS and/or functions then you need to build child theme and edit it. For child theme, you can check out http://catchthemes.com/blog/create-child-theme-wordpress/
You don’t need to any file to upload your image and link in the slider. The slider images that you are viewing by default in the demo slider images. You can replace those image by selecting your own slider type from “Image Slider, Post Slider, Page Slider and Category Slider”. You can choose that from “Appearance => Theme Options => Featured Slider => Slider Options => Select Slider Type“. After that you can check our theme instructions page at http://catchthemes.com/theme-instructions/adventurous-pro/ where you can ready detail instruction on how to add those slider image.
We also have screencast for Image Slider http://catchthemes.com/blog/videos-blog/video-series-adding-featured-image-slider/ and Post Slider http://catchthemes.com/blog/videos-blog/video-series-adding-featured-post-slider/
Regards,
SakinSakin
Keymaster@Wade: Custom CSs, just fix the css issue if you have any. But for inserting the photo and text can be done with your page editor itself. You might need to use responsive columns for that you can install plugin. Other then that you can check this for image alignment with text http://en.support.wordpress.com/images/image-alignment/
Sakin
Keymaster@luismarioochoa: Actually the image that you have added is the place for logo in Catch Box theme. That is why it has div id ‘site-logo’. So, you want to add another image as well. For that you need to build child theme. For child theme you can read http://catchthemes.com/blog/create-child-theme-wordpress/ and also download sample child theme from there. Then you can add the following function in your child theme and edit it as per your need.
function catchbox_headerdetails() { ?> <div class="logo-wrap clearfix"> <?php echo catchbox_header_image(); ?> <!-- Add New Image --> <img src="Add your image url" alt="Add your image alt text" /> <?php echo catchbox_header_details(); ?> </div><!-- .logo-wrap --> <?php }Sakin
Keymaster@Jarden: I see that you have added mega menu and already disable our default menu. But your mega menu has min-height which is showing that black wrapper. You can add the following css in “Appearance => Theme Options => Custom CSS” box to remove that black wrapper.
#mega_main_menu { min-height: 0; }Did you check out theme Adventurous Pro which has Sticky menu http://catchthemes.com/demo/adventurous/ and Catch Evolution Pro http://catchthemes.com/demo/catch-evolution/
Sakin
Keymaster@greg2015: I don’t see any issue in your About US page. I don’t get it what you mean. We don’t have any issue with Catch Evolution theme. It’s been fully tested as per the WordPress.org guideline and we keep our theme quality to the high standard.
About your wpcr_respond_1 dive in the content. Looks like you have added shortcode or that div in your about us page as well. Edit your about us page and check in text mode.
Sakin
Keymaster@ncwp92: Thanks for your premium support membership http://catchthemes.com/membership/ and I was able to help you instantly though private support ticket.
Note: Just remember to keep your WordPress Core, Theme and Plugin updated always. Cheers 🙂
Sakin
Keymaster@cgsmith1: Sorry I don’t get it what you are trying to do it. You already had ID masthead in your header above menu. Which is responsive.
The way you have added logo in your header is not the best way. Here is the step to add in full width logo.
1. First your logo image should be 1200px width for full width. Your image is just 1100px.
2. Then go to “Appearance => Customize => Site Title & Tagline” and click on “Change image and upload your logo image. Then uncheck the option “Check to disable logo” and “Display Header Text”
3. Then add the following css in “Appearance => Theme Options => Custom CSS” box or in your child theme style.css/* To Remove padding spaces */ #masthead, #masthead .wrapper, #site-branding { padding: 0; } /* To hide header right section */ .sidebar-header-right { display: none; float: right; } -
AuthorPosts
