Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@betgriff: Can you try adding in the following CSS in “Appearance => Theme Options => Custom CSS” box.
#content article { -webkit-hyphens: none; -moz-hyphens: none; hyphens: none; }Sakin
Keymaster@Jeffer: You should have posted your site URL. Are you talking about the sliding image. Are you using Free Catch Everest Theme or Premium Catch Everest Pro Theme.
If you are using Free Catch Everest Theme then the image can be changed or disabled from “Appearance => Featured Post Slider” in your WordPress Dashboard. Free version only have Featured Post Slider and for this you need to first create post with Featured Image and then get the ID of the post and then add that post ID. See the detail instruction at http://catchthemes.com/theme-instructions/catch-everest/
But if you are using Catch Everest Pro then you can simple use Featured Image Slider where you can upload your own image and add text and link as per you need. See the detail instruction at http://catchthemes.com/theme-instructions/catch-everest-pro/
Sakin
Keymaster@a.jagroe: What’s your site URL? It doesn’t take the image inside the post. But it takes the image from the Featured Image in that post. So, you need to assign Featured Image in those posts. See how to add featured image http://en.support.wordpress.com/featured-images/#setting-a-featured-image
Sakin
Keymaster@Sarah: If you are talking about the the gap between the widgets then it’s margin button and you can adjust as per you need and add the following CSS in “Appearance => Theme Options => Custom CSS” box.
.widget { margin-bottom: 30px; }But if you are talking about the padding then it will be as below:
.widget { padding: 30px; }Sakin
Keymaster@shamwow: Archive drop down and post page are different. If you select on archive drop down month then only it will filter with the month.
Sakin
Keymaster@shamwow: If you don’t like hyphens then you can add the following CSS in “Appearance => Theme Options => Custom CSS” box.
.site-content article { -webkit-hyphens: none; -moz-hyphens: none; hyphens: none; }Sakin
Keymaster@nnicholson1: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box.
.page #main #content img { background-color: transparent; }Sakin
Keymaster@jessgranata: The excerpt layout will not work good when you are using Custom Post Format. In each of your post, you need to change that to “Standard” format.
Sakin
Keymaster@offirkeren: You should have responsive css for the table. This is not a part of our theme so we don’t normally support it. But I have come up with some kind of solution that will work for you. If it doesn’t then you might need to get CSS developer.
For now, you can try adding in the following CSS in “Appearance => Theme Options => Custom CSS” box..page-id-10 .entry-content td{ display: inline-block; padding-right: 1%; width: 31.4%; }Sakin
Keymaster@ultradezins: This is strange why it is not working in your site. I need to check in your server. So, I will email you for further correspondence.
Sakin
Keymaster@jmott310: Thanks for your site access. I am able to check in. You can add the following CSS in “Appearance => Theme Options => Custom CSS” box.
@media screen and (min-width: 960px) { #header-right { float: left; } .header-sidebar .widget, .header-sidebar .widget_text { float: left; } }Sakin
Keymaster@ultradezins: Remember, it only takes post ID not the page ID. So, please check that. I see that you have added one post ID as 698. So, let’s try adding in as following 4 slides.
698
1039
1027
865Sakin
Keymaster@Sonia: Get the link url form “Media” and then add the link and when you add link check on “Open Link in New Window/Tab”. See this for more details http://en.support.wordpress.com/links/
Sakin
Keymaster@offirkeren: The way you have added table seems to be problem. There is fixed width in the table td. Either you need to reduce that or you need to add responsive table with the help of plugin.
It is showing correctly in Chrome, as chrome correct the table automatically. Check our this plugin http://tablepress.org/extensions/responsive-tables/ or search for other responsive table plugins.
Sakin
Keymaster@zuzubailey: First clear you cache from WP Super Cache plugin and check in.
If this doesn’t work then it must be database issue and you need to do search and replace from this script http://interconnectit.com/products/search-and-replace-for-wordpress-databases/ where you can search for http://50.87.144.107/~zuzu0205/ and replace with http://www.zuzustidbits.com
Sakin
Keymaster@kat22: Sorry there is no option in free to do that. You need to manually change the social-profile.png image file from your theme image folder.
Sakin
Keymaster@zuzubailey: What have you changed in the URL. Check your url at “Settings => General”.
Sakin
Keymaster@shamwow: It will not effect much on search result. You can see most of the WordPress themes doesn’t work on fully in Google Structure data. We have just completed Google Structure with our Catch Box Pro theme. Now we will be doing to for Catch Everest Pro theme. So, wait for new version to come.
Sakin
Keymaster@oliver: If you are trying to hide it then you can just add css in “Appearance => Theme Options => Custom CSS” box and hide it. But if you want to edit the functions then you need to buil child theme and create the file functions.php and then add the following Code and edit as per your wish.
function catcheverest_header_meta() { $date = sprintf( '<a href="%1$s" title="%2$s" rel="bookmark"><time class="entry-date" datetime="%3$s">%4$s</time></a>', esc_url( get_permalink() ), esc_attr( get_the_time() ), esc_attr( get_the_date( 'c' ) ), esc_html( get_the_date() ) ); $author = sprintf( '<span class="author vcard"><a class="url fn n" href="%1$s" title="%2$s" rel="author">%3$s</a></span>', esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ), esc_attr( sprintf( __( 'View all posts by %s', 'catcheverest' ), get_the_author() ) ), get_the_author() ); // Translators: 1 is category, 2 is tag, 3 is the date and 4 is the author's name. $utility_text = __( '<span class="on-date">Posted on %1$s</span><span class="by-author"> by %2$s</span>', 'catcheverest' ); printf( $utility_text, $date, $author ); }Sakin
Keymaster@jpbertram: You can add it in “Appearance => Theme Options => Custom CSS” box. The following CSS is an example where the blog text is replaced by image and then remove the border.
.page-template-page-blog-php .page-header { background: url("http://commishcollege.com/wp-content/uploads/2013/09/packers-49ers-football-anquan-boldin-jerron-mcmillian_pg_600-690x440.jpg") no-repeat scroll 0 0 transparent; border: none; text-indent: -99999px; } -
AuthorPosts
