Forum Replies Created
-
AuthorPosts
-
July 25, 2013 at 9:09 am in reply to: conflict with featured image use in theme and woocommerce #12337
Sakin
Keymaster@acanthuroid: Then you can use css to hide the featured image in the category.
Sakin
Keymaster@FlatsPirate: Sorry that option is no there in Simple Catch Free Theme. This theme uses the excerpt text, title and the featured image of the post.
You need to build child theme and then customize it by replacing excerpt with full content.
Sakin
Keymaster@rdorrego: You can delete the old css that I gave you and add the following css.
#branding { z-index: 25; } #nav-slider .nav-previous, #nav-slider .nav-next { z-index: 20; }Sakin
Keymaster@pohl: When I check in your site I only see the following css in your custom css box.
.logo-wrap { float: none; }Please add the css that I gave you in replace of your old custom css.
If you have added that and still not showing then make sure you have clear your cache in setting of WP-Cache plugin.
Sakin
Keymaster@Printsev: It is difficult to manage just with css as it’s not coded in the same wrap. So, we have to play with position with CSS. I am not so sure about the position that will be exact or not. You can try adding in the following css in “Appearance => Theme Options => Custom CSS” box.
.comment { position: relative; } .comment .reply { bottom: 70px; bottom: 7rem; display: block; margin: 0; padding: 0; position: absolute; right: 0; } @media screen and (min-width: 1190px) { .comment .reply { bottom: 90px; bottom: 9rem; } } @media screen and (max-width: 1060px) { .comment .reply { bottom: 50px; bottom: 5rem; } }Sakin
Keymaster@Printsev: I don’t get it what you mean, Can you send me the screenshot and also your site url?
Sakin
Keymaster@rdorrego: Just add the following CSS in “Appearance => Theme Options => Custom CSS” box.
#branding { z-index: 10; }Sakin
Keymaster@Cherry: You can add that in Catch Everest Pro by adding in the widget in Header Top sidebar. There is not option in free theme. There is one trick, you can add the phone, email and logo in the same image.
Sakin
Keymasternice 🙂
Sakin
Keymaster@adasprom: Yes, we have found issue in Featured Header Image options, which is schedule to be fixed in version 1.4. For now you can add above css or you can go to your file catcheverest-functions.php and in line no 358 replace the following code
elseif ( $enableheaderimage == 'allpage' || ( $enableheaderimage == 'homepage' && ( ( is_front_page() || ( is_home() && $page_for_posts != $page_id ) ) && $enableslider == 'enable-slider-homepage' ) ) ) { catcheverest_featured_image(); }With
elseif ( $enableheaderimage == 'allpage' || ( $enableheaderimage == 'homepage' && ( is_front_page() || ( is_home() && $page_for_posts != $page_id ) ) ) ) { catcheverest_featured_image(); }Sakin
Keymaster@Bill Pagonas: I am confused about what you want to do with the menu. Can you send me your design screenshot. Just upload the design image anywhere in your site or photo sharing site and then send me the url of the design.
Sakin
Keymaster@Jodi: It’s not double spacing. It’s the margin that is used for different screen size.
You can adjust it by reducing the margin and add the following css in “Appearance => Theme Options => Custom CSS” box.
/* For screen size 1000px and above */ @media screen and (min-width: 1000px) { p { margin-bottom: 40px; } }Sakin
Keymaster@Jodi: It same like spacing. I don’t see issue with it. Catch Everest theme is designed that way. You can see demo at http://catchthemes.com/demo/catch-everest/
Sakin
Keymaster@Marianne: Your site is different so it will be as below.
#header { background: none #fff; }Sakin
Keymaster@dfranck90: I see that you have added lot of css. So, I cannot tack back all. But can you try adding in the following css.
#header #mainmenu ul { margin: 0; padding-top: 2px; text-align: center; } #header #mainmenu ul li { display: inline-block; float: none; text-align: center; } #header #mainmenu ul li a { border-bottom: 10px solid #fff; } #header #mainmenu ul ul li a { border-bottom: none; }Sakin
Keymaster@Oceani5: See the screenshot of Featured Slider options in Catch Everest Pro http://pinterest.com/pin/548594798329509357/
Sakin
Keymaster@lcoutlaws: If you want to change in to color then you can add the following CSS in “Appearance => Theme Options => Custom CSS” box.
#branding { background: none #fff; }But if you want different image then you need to add the image url as the following css.
#branding { background: url("Here enter you full image url") repeat scroll 0 0 transparent; }Sakin
Keymaster@Bill Pagonas: it has to be display inline and float left.
#navmenu li { display: inline; float: left; }Sakin
Keymaster@iceman027: I see that you have added background color for your widget in you Custom CSS box twice. I see the following CSS. Why did you added 2 times.
.widget { background-color : #004000; } .widget { background-color: #004000; color: #e0b303; }For search box at header right background. You can add the following css.
#sidebar-header-right .widget_search { background-color: #e0b303; }Sakin
Keymaster@barneycat25: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box to hide the page title.
.page .entry-header .entry-title { display: none; } -
AuthorPosts
