Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@rgbarsanti: Simply add the following CSS in “Appearance => Theme Options => Custom CSS” box.
.featured { height: 250px; }Sakin
Keymaster@owen: Oh sorry I missed that. You can add the following instead of above css.
#branding #searchform { padding-top: 10px; position: static; text-align: center; } #branding #s { float: none; }Sakin
Keymaster@rgbarsanti: Sorry I mean move to upload the size you want that is 976Ă—250
Sakin
Keymaster@owen: There you can see
‘ code.<body <?php body_class(); ?>>. In wordPress Theme we need to add default hook body_class in `Sakin
Keymaster@fcharvet: The simple way is to just remove the post when you are using Image Slider. But if you want then it’s bit complicated. You need to build child theme and then crate functions.php file in your child theme and add the following code.
<?php /** * Only Pages in Search */ function catcheverst_child_search_pages($query) { if ( !is_admin() && $query->is_main_query() ) { if ($query->is_search) { $query->set( 'post_type', 'page' ); } } } add_action( 'pre_get_posts', 'catcheverst_child_search_pages' );Sakin
Keymaster@owen: This looks quite complicated. But you can try in by adding the following CSS in “Appearance => Theme Options => Custom CSS” box.
#branding #searchform { text-align: center; } #branding #s { float: none; }Sakin
Keymaster@lizzy39: For detail color customization you can simply upgrade to Catch Everest Pro where you have color options in your Theme Options panel.
For free one you need to be more specific on which one you want to change. For site you can add the following CSS in “Appearance => Theme Options => Custom CSS” box. Change the color code as per your need.
.site { background-color: #fff; }Sakin
Keymaster@kumar: Thanks for your support question but you have remove the copyright information for Catch Box theme. So, please add back. This is only reason we provide free theme and free support. If you want to remove that you can use Pro version.
Actually it is not a good method to add background in header to make it responsive. But since your image is small you can use background position.
#branding { background: url("/wp-content/themes/catch-box/images/Reheader.png") no-repeat scroll center center transparent; }For your second question, you need to work with the plugin support forum.
Sakin
Keymaster@Coupon Guy: Thanks 🙂
Sakin
Keymaster@rgbarsanti: Can you upload the featured image of the size 976×320 and let me know it. Then I will check in what can be done.
Sakin
Keymaster@pchambers: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box.
.site { background-color: transparent; box-shadow: none; }Sakin
Keymaster@rgbarsanti: Can you post in your site URL and then let me know what is the size that you are trying to accomplish. If you are using Pro version of the theme then you have Featured Image Slider, where you can upload the image size of your own choice and it will be re-sized automatically.
Sakin
Keymaster@Coupon Guy: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box.
.single .featured-image { float: left; }November 21, 2013 at 12:39 pm in reply to: How do I change the background of my header without changing the header image? #17461Sakin
Keymaster@Cory: I think it’s ok to keep the header background image like that. Stretching is not a good idea.
Sakin
Keymaster@Trishah: Thanks for your appreciation and yes we are absolute fine that you like to use Catch Box Free theme. Here is donation link: http://catchthemes.com/donate/
Sakin
Keymaster@Coupon Guy: Please use Hire a cutomizer for detail customization. You can copy the function catcheverest_admin_header_image() from custom-header.php file into your child theme functions.php file and edit it.
Sakin
Keymaster@Sebastiaan.Horn: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box.
.widget img { box-shadow: none; } -
AuthorPosts
