Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@Fl0W: Can you send me your site URL and also assign on page with theme template you have created and send me that page URL.
Sakin
Keymaster@colorange: For free theme, you are not allowed to edit copyright information. To edit footer, you need to upgrade to pro version when you have Footer Editor Options.
July 8, 2013 at 9:13 pm in reply to: Theme seems not compatible with the WP app for iPad/iPhone #11550Sakin
Keymaster@fcast: Sorry I cannot understand your screenshot as it’s not in English Language. We don’t use any Apps for iPad and iPhone. So, can you tell me you site URL and what is the issue.
Sakin
Keymaster@lakeoswegobaseball: Test page is working fine. It is showing only 1 header image. I think it’s due to Cache Plugin that you have install WP Super Cache. Please clear the cache from WP Super Cache and check it.
Sakin
Keymaster@fx: It will be better if you upgrade to Catch Everest Pro, where you have color scheme black to match your design and also there is individual color picker to customize it further. Check our Catch Everest Pro feature at http://catchthemes.com/theme-instructions/catch-everest-pro/
You can to change color individual. Here is the css for text that you can add in “Appearance => Theme Options => Custom CSS” box.
body, button, input, select, textarea { color: #fff; } .entry-header .entry-title a { color: #fff; }Also you are not allowed to remove the footer credit Catch Everest in Free Version. So, best option I see for you in to upgrade.
Sakin
Keymaster@rwaki: Then you can add the following css.
#footer-sidebar { background-color: #000; }Sakin
Keymaster@klhaight: then you can add the following css.
#content .entry-content a, #content .entry-summary a { color: #004d1b; }If you see your header image http://www.chatfieldcourt.com/wp-content/uploads/2013/07/headerblacktag6.jpg there is lot of white space in the image itself. Why don’t you just crop that white spaces and upload the image section only. Then you can simply center the image with the following css.
#branding { text-align: center; }Sakin
Keymaster@lakeoswegobaseball: It should be like that. You just have to add featured image in the page and then setup. I think you have insert the image in the page content as well. That is why it is showing two. Can you add it in one page and show me.
Sakin
Keymaster@nicolet531: Wow you have posted here was well. It depends on site to site. Since, we are working this on email. Let’s get it solved there.
Sakin
Keymaster@Trishah: You code looks like just replace that
<?php the_post_thumbnail('thumbnail'); ?>with<?php if( has_post_thumbnail() ):?> <a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'catchbox' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"> <?php the_post_thumbnail('featured-slider'); ?> </a> <?php endif; ?>then you need to check in those post has featured image or not. If those post don’t have featured image then it will not display the image. See this for featured image http://en.support.wordpress.com/featured-images/#setting-a-featured-image
Sakin
Keymaster@kdhutto1: About your slider, if you have one long title and another short title, then you will have this issue. We cannot make the height fixed due to responsive design as it need to adjust as per the screen size. So, here what you can do is. For the post that has long title, you can shorten the content through post excerpt box. You can just add the few words only in the excerpt box. This can help you give more control of the text. See this for Excerpt Box: http://en.support.wordpress.com/splitting-content/excerpts/
Same with the menu, we cannot make that as we don’t know how long will be your menu. You can try increasing the padding of the menu. For example, in the following css I have increase the padding left and right to 54px. If you like that then you can add the following css in “Appearance => Theme Options => Custom CSS” box.
#branding ul.menu a { padding: 0 54px; }Sakin
Keymaster@pango: We don’t have much default style for table. Just a border, width and padding. See the css that we have for table.
.entry-content table { border-bottom: 1px solid #e6e6e6; width: 100%; } .entry-content td { border-top: 1px solid #e6e6e6; padding: 10px 10px 8px 0; }When I check in your page, I found that we were using old html code as
<td bgcolour="#ff9900">Point 1</td>this will not work. You have to change that to.
<td style="background-color:#ff9900;">Point 1</td>Sakin
Keymaster@nzcid: yes you can replace that with the following css.
#header-content { margin: 0; padding: 0; }This changes was made to make it compatible to latest HTML5.
Sakin
Keymaster@nicolet531: We usually answer the support forum within 8 hours in Weekday and within 24 hours during weekends. Since, we run the site globally, there is time difference.
Sorry for the trouble. I have already started assisting you even thorough email.
Sakin
Keymaster@Rideit NZ: This options in not there. For this you might need to hire customizer. This is complicated process. First you need create child theme, then you need to remove_action your catcheverest_homepage_featured_display() and then add_action back catcheverest_homepage_featured_display() to the after sidebar area.
I am not 100% sure, you can try adding the following code in your child theme functions.php
// Unhook default parent functions function unhook_default_functions() { remove_action( 'catcheverest_main', 'catcheverest_homepage_featured_display', 10 ); } add_action('init','unhook_default_functions'); add_action( 'catcheverest_after_secondary', 'catcheverest_homepage_featured_display', 10 );Sakin
Keymaster@nicolet531: If you use the post slider in Catch Box, it will take your Featured Image from the post. If the image is higher then Width: 644px and Height: 320px, then it will crop to Width: 644px and Height: 320px. If it is lower then this size, then it will show you your original size.
But you have flexibility to use or own image size if you are using Featured Image Slider.
The Colon (:) is the separator between then title and excerpt content of the post. If you want to remove that, then you have to add in the custom css to hide it.
Sakin
Keymaster@nicolet531: For individual pages, you can disable the comment from “Discussion” box. Just uncheck “Allow comments” and if you further want to disable trackback then uncheck “Allow trackbacks and pingbacks on this page”. For more details about enable and disable comments. See this http://en.support.wordpress.com/enable-disable-comments/
Sakin
Keymaster@nicolet531: This is not supported by default. So you have to add custom CSS for that. Since you are already in my support list. I will contact you through email.
-
AuthorPosts
