Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@alexch: Sorry I don’t get it what you mean, the links that you have posted in in so weird.
Sakin
Keymaster@Herbie: You can add border on the left by adding in the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:
blockquote { border-left: 4px solid #1b8be0; padding-left: 10px; }The double quote mark in the blockquote is from the following css and change it as per your need.
blockquote:before { content: "\201C"; }Sakin
Keymaster@Kaydev: Sorry there in no option to do that. For that you need to build child theme and then create page template for blog page and then set latest post in the home and then assign that blog page the blog template.
Sakin
Keymaster@effess: If you want to remove that then you need to build child theme. For child theme refer to http://catchthemes.com/blog/create-child-theme-wordpress/ where you can even download sample child theme. Then add the following code in your child theme
functions.phpfile.function catchkathmandu_unhook_functions() { remove_filter( 'attachment_link', 'catchkathmandu_enhanced_image_navigation', 10, 2 ); } add_action( 'init','catchkathmandu_unhook_functions');Sakin
Keymaster@tinsonit: Ok for that, you need to build child theme and then copy
index.phpfile in your child theme and then add the following code just below the code:<main id="main" class="site-main" role="main"><?php if( is_home() && get_option('page_for_posts') ) : ?> <header class="page-header"> <h1 class="page-title"><?php echo apply_filters('the_title',get_page( get_option('page_for_posts') )->post_title); ?></h1> </header> <?php endif; ?>Sakin
Keymaster@kathiejs: When I check in your site, its’ working fine. I am bit confused which option what you want to disable.
Sakin
Keymaster@Kaydev: Your settings will be automatically there in child theme. You might just need to reassign menu if you are using custom menus.
Sakin
Keymaster@warekart: You site is not accessible. It is showing 503 Service unavailable. So, let me know once your site is live back.
Sakin
Keymaster@kathiejs: Please check your css with the css that I have posted in. It should be li and not il. You have css as below:
#secondary .widget_categories ul il { font-size: 16px; }
Where it should be as:
#secondary .widget_categories ul li { font-size: 16px; }Sakin
Keymaster@Lisa: Please check reply here http://catchthemes.com/support-forum/topic/download-newest-version-of-kathmandu-pro/
Sakin
Keymaster@Orlando: You can adjust the margin bottom as per your need in the following css and then add it in “Appearance => Customize => Theme Options => Custom CSS Options” box:
.sidebar-primary .widget { margin-bottom: 40px; }Sakin
Keymaster@Christine: Looks like there is plugin or plugin configuration issue. So, first go to “WP Super Cache” plugin settings and check your settings like if you have Minify settings, try unchecking “JS minifier”, after you change this settings, make sure you clear your cache. Then is this doesn’t work then you might need to check in disable plugin one by one to find the conflicting plugin.
If this is not working then I need to check in your server. Let me know it and then I will email you.
Sakin
Keymaster@Lisa: Yes, to update Premium/Pro theme from your WordPress Dashboard, you need to activate Catch Updater Plugin http://catchthemes.com/wp-plugins/catch-updater/. Then download zip file from your account at http://catchthemes.com/my-account and install update from “Appearance => Themes => Add New => Upload Themes”.
Thanks @bigoslesli for fast response.
Sakin
Keymaster@alexch: You can add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:
#featured-content .entry-content, #featured-content .entry-excerpt { text-align: justify; }Sakin
Keymaster@Vidal: Yes, for that you need to build child theme. For child theme, refer to http://catchthemes.com/blog/create-child-theme-wordpress/ . Then you need to add the following code in your child theme
functions.phpfile. But it won’t look nice.function chicago_unhook_functions() { remove_action( 'chicago_after_header', 'chicago_add_breadcrumb', 10 ); } add_action( 'init','chicago_unhook_functions'); add_action( 'chicago_after_header', 'chicago_add_breadcrumb', 45 );Sakin
Keymaster@Kaydev: There is color options in “Appearance => Customize => Color Options => Primary Menu Color Options”. There you can change Menu, Hover/Active, Sub-menu colors as per your need.
Can you post in your custom css that you have in “Appearance => Customize => Theme Options => Custom CSS Options” box, as I see extra closing bracket
}at the end.Try adding in the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:
.nav-primary .menu .sub-menu li a:hover, .nav-primary .menu .sub-menu li a:focus { color: #21759b; }Sakin
Keymaster@texasman: Sorry I don’t get it what you mean. What is the maximum width of your site that you want to change to? Then what is the width of your sidebar that you want to be fixed. Then accordingly we need to change the width of the content as per the responsive design.
Sakin
Keymaster@kathiejs: ok for category, replace previous css with the following:
/* Category Widget */ #secondary .widget_categories ul li { font-size: 16px; } -
AuthorPosts
