Forum Replies Created
-
AuthorPosts
-
February 24, 2015 at 12:06 am in reply to: I need help with the background color on my web site #52243
Sakin
Keymaster@Anne-Pia: For that you need to translate the theme in Danish language. Then it will be auto changed to it. You need to create .mo and .po files. You can see the example language in ‘languages’ folder. Out theme is translation ready and you will see
catch-flames.potfile in languages folder. So, you can just download poedit software from http://poedit.net/and create .mo and .po file.After you complete translation, you can contribute to theme and we will add in the core theme.
February 23, 2015 at 11:54 pm in reply to: I need help with the background color on my web site #52241Sakin
Keymaster@Anne-Pia: If you remove that older post link then how will your site visitor look for old posts.
February 23, 2015 at 11:52 pm in reply to: How do I change default Image sizes in Blog listings? #52240Sakin
Keymaster@Consciousness: If you don’t want to use import then you can add the following code in your child theme functions.php file.
add_action( 'wp_enqueue_scripts', 'catchevolution_child_enqueue_styles' ); function catchevolution_child_enqueue_styles() { wp_enqueue_style( 'catchevolution_parentstyle', get_template_directory_uri() . '/style.css' ); }Sakin
Keymaster@BigA2015: Thanks for your appreciation and please support Catch Kathmandu theme by providing your good review and rating at https://wordpress.org/support/view/theme-reviews/catch-kathmandu/
Sakin
Keymaster@photobyemelie: Can you send me your site URL so that I can check in.
February 23, 2015 at 11:36 pm in reply to: I need help with the background color on my web site #52236Sakin
Keymaster@Anne-Pia: You can change colors from “Appearance => Theme Options => Color Options => Content Color Option”
Sakin
Keymaster@ADN: You cannot change that just from Custom CSS. For that you need to change the code. So, for this you need to build child theme http://catchthemes.com/blog/create-child-theme-wordpress/. Then copy
catchkathmandu_content_nav()function fromtemplate-tags.phpto your child themefunctions.phpfile.Then you will see the following code:
<?php previous_post_link( '<div class="nav-previous">%link</div>', '<span class="meta-nav">' . _x( '←', 'Previous post link', 'catchkathmandu' ) . '</span> %title' ); ?> <?php next_post_link( '<div class="nav-next">%link</div>', '%title <span class="meta-nav">' . _x( '→', 'Next post link', 'catchkathmandu' ) . '</span>' ); ?>You need to replace with following:
<?php previous_post_link( '%link', '<div class="nav-previous">Previous</div>' ); ?> <?php next_post_link( '%link', '<div class="nav-next">Next</div>' ); ?>Sakin
Keymaster@shaun.smudger.smith: Sorry your site is offline in maintenance mode. Also I don’t know what you meany by original place.
Sakin
Keymaster@Carla: Please validate your CSS in child theme. It’s not show it should work. Can you take expert help.
For example the following text. You cannot add text like that.
Child CSS Parent CSS FilesIf you want to add text then it should be as:
/*Child CSS Parent CSS Files*/Also the code why you have added the following:
ruimte tussen titel en tagline }Sorry I will not be able to do detail review of your child theme. So, if you want to change font only. Then I suggest you to remove your child theme and just use parent theme and then use plugin to add font support. As child theme and advance css editing requires HTML,CSS and PHP knowledge.
Sakin
Keymaster@laurat107: Sorry I only support WordPress Theme developed by us that is by Catch Themes.
Sakin
Keymaster@Kim: Sorry I don’t know about it. You might need to hire developer to work on it. In theme, we are just allowed to used the default core function which does that. Maybe search for plugin.
Sakin
Keymaster@Troy: To add more slider image, you just need to go to “Appearance => Theme Options => Featured Slider => Slider Options” and in “Number of Slides” you can increase the number.
Sorry there is no option to add image under the slider.
Sakin
Keymaster@andriansah: nice 🙂
Sakin
Keymaster@Keith: Post in your site URL so that I can check in how you have use plugin to add that font then I can suggest you css.
February 22, 2015 at 11:06 pm in reply to: Homepage Featured Content not displaying properly on iPad2 #52183Sakin
Keymaster@Josh: Ok I have replied in all the email you have send me.
Sakin
Keymaster@Schelbert: I don’t know how you have added in Meta Description. We don’t have anything in theme to control Meta Description and we recommend WordPress SEO by Yoast plugin to control Meta Description.
Also I couldn’t check in as you have W3 total Cache plugin optimized. So, use that plugin and change your description as per your need and don’t forgot to clear your cache from W3 Total Plugin after you make any changes.
Sakin
Keymaster@Carla: When you remove that media screen. You forgot to remove that closing bracket.
}For example, you have css as
#site-title {
font-size: 54px;
font-family: Cochin, sans-serif,Arial;
}}
This should be
#site-title {
font-size: 54px;
font-family: Cochin, sans-serif,Arial;
}Another same issue:
#site-description {
font-size: 18px;
font-style: Cochin, sans-serif,Arial;
}}
This should be:
#site-description {
font-size: 18px;
font-style: Cochin, sans-serif,Arial;
}Sakin
Keymaster@daniel12: This theme is not ideal for large header image. Maybe try other theme like Catch Adventurous.
In Simple Catch Theme, to add large image, you need to build child theme and then copy
content.phpfile to your child theme and replace<div class="col3 post-img"> <a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'simplecatch' ), the_title_attribute( 'echo=0' ) ); ?>"><?php the_post_thumbnail( 'featured' ); ?></a> </div> <!-- .col3 -->With the following code:
<div class="col8 post-img"> <a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'simplecatch' ), the_title_attribute( 'echo=0' ) ); ?>"><?php the_post_thumbnail( 'full' ); ?></a> </div> <!-- .col3 -->Again replace the code
<div class="col5">
with the following code
<div class="col8">About the footer, it’s same you need to build child theme and work on it. Only Pro version give you Footer Editor in theme options panel to change the footer text.
-
AuthorPosts
