Forum Replies Created
-
AuthorPosts
-
Sakin
KeymasterHello Stephanie,
This is known issue from Chrome browser and Google is expected to fix in new version update. It has issue with rem font value. So, the temporary fix until the new version of Chrome is to add the following css in “Appearance => Theme Options => Custom CSS” box.
body > div { font-size: 1.4rem; }Regards,
SakinSakin
KeymasterHi Helen,
To get sidebar in your Hompepage, you need to add in either Static Front page or Enable Latest post.
For adding Static Front Page, go to “Settings => Reading” from your WordPress Dashboard and then in “Front page displays” click on “A static page (select below)” and then in “Front page” choose the Page that you want to display in your homepage with your sidebar,.
For adding Latest post, you can just go to “Appearance => Theme Options => Homepage Settings => Homepage / Frontpage Settings” and then check “Enable Latest Posts?” and save changes.
Regards,
SakinSakin
Keymaster@theresem: Maybe it is showing when you login to your site. Check in your site after you log out from our site.
Sakin
KeymasterHello Djapeto,
You can just add HTML hyperlink code. See this http://www.w3schools.com/html/html_links.asp
Regards,
SakinSakin
KeymasterHi Philippe,
We made this Catch Box theme to take H3 tag for Widget title. This cannot be change from CSS. Also why do you need to change it.
If you really need to change then you need to create child theme and then create empty
functions.phpfile in your child theme and then add the following codefunction catchbox_widgets_init() { register_widget( 'catchbox_adwidget' ); register_sidebar( array( 'name' => __( 'Main Sidebar', 'catchbox' ), 'id' => 'sidebar-1', 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => "</aside>", 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ) ); register_sidebar( array( 'name' => __( 'Footer Area One', 'catchbox' ), 'id' => 'sidebar-2', 'description' => __( 'An optional widget area for your site footer', 'catchbox' ), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => "</aside>", 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>', ) ); register_sidebar( array( 'name' => __( 'Footer Area Two', 'catchbox' ), 'id' => 'sidebar-3', 'description' => __( 'An optional widget area for your site footer', 'catchbox' ), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => "</aside>", 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>', ) ); register_sidebar( array( 'name' => __( 'Footer Area Three', 'catchbox' ), 'id' => 'sidebar-4', 'description' => __( 'An optional widget area for your site footer', 'catchbox' ), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => "</aside>", 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>', ) ); }Sakin
KeymasterHello Kevin,
What is your problem when you try to access you admin section. We don’t have control of your WordPress admin section.
Have you recently added new plugin or updated the plugin then try deleting that plugin. For this type of issue, you need to contact your Hosting Server support team.
Regards,
SakinJune 6, 2014 at 1:27 am in reply to: How to use different responsive.css in child theme without changing parent theme #33672Sakin
Keymaster@prajakta: This is simple. So, you want to remove the Catch Kathmandu theme
responsive.cssfile and then add your ownresponsive.cssfile in your child theme. Then first, create blankfunctions.phpin your child theme and add the following code.<?php /** * Catch Kathmandu Child functions and definitions */ // Remove Parent theme responsive.css and adding new responsive.css in child theme function catchkathmandu_child_enqueue_scripts() { wp_dequeue_style( 'catchkathmandu-responsive' ); wp_enqueue_style( 'catchkathmandu-child-responsive', get_stylesheet_directory_uri() . '/responsive.css' ); } add_action( 'wp_enqueue_scripts', 'catchkathmandu_child_enqueue_scripts', 11 );June 6, 2014 at 1:15 am in reply to: Unable to edit theme_options.php without editing the parent theme #33669Sakin
Keymaster@prajakta: Sorry I don’t think moving the theme-options.php to child theme will work as it depends on so many files. So, it will be better that you create additional option in your child theme or use plugin like Options Framework to add additional option in your child theme.
Sakin
KeymasterHello A.J.
Do you want image as the background or direct?
If you want direct image, then you can go to “Appearance => Theme Options => Footer Editor Options” and just add image HTML code. For example:
<img src="http://new.tinygrab.com/225cb604b30df1277b9fce0b0cdc01b4aae35dd5a6.png" alt="Image Name" />Or if you want as background then you need to add the following css in “Appearance => Theme Options => Custom CSS” box.
#site-generator { background: url("http://new.tinygrab.com/225cb604b30df1277b9fce0b0cdc01b4aae35dd5a6.png") no-repeat scroll center top #fff; }Regards,
SakinSakin
KeymasterDear Sryu,
Can you send me your site URL and also the screenshot showing the issue. I need to check this in details.
Regards,
SakinSakin
Keymaster@wrongrabbit: thanks for your appreciation.
1. When clicking on a menu item, the page refreshes and jumps to the top. Can this be avoided (maybe in Pro version)?
— You have very large header image that is why you feel like it jumps to the top. Actually in all WordPress theme, when clicking on menu it will refresh the page to that particular page from header. If you want to load your page directly above the content then you need to add#mainafter you menu link. So, you can go to “Appearance => Menus” and clear custom menu and then add menu item as links like thishttp://lasteaiad.rae.ee/oigusaktid/#main2. How to change the font size on category menu items on the main sidebar (currently titled “Vali lasteaed”)
— You can change the font size as per you need in the following css and then add it in “Appearance => Theme Options => Custom CSS” box.
#secondary .widget_categories ul { font-size: 15px; }3. Is it possible to use a different header image on each category page ? So that every kindergarten gets her own header image. We tried “Unique header” plugin ( http://geek.ryanhellyer.net/products/unique-headers/ ) with Taxonomy, but didn’t work. The Pro version seems to have a random header option, but is there a specific header option possible ? Maybe just point us where the code lies and we’ll figure it out ourselves…
— In Pro version, you can add specific header image for each individual page and post. But the category will load the default header image.4. We want to use Easy Responsive Tabs plugin in our posts (like in http://lasteaiad.rae.ee/category/aruheina/ ), but we need to remove the padding, so that the tabs start from the very top of the post
— Not so sure about this. So, first try adding in the following first line css and if you further want to reduce the padding then add the second line as well in “Appearance => Theme Options => Custom CSS” box.#post-113 .entry-content { padding: 0 ;} #post-113 .hentry { padding-top: 0; }PS – we probably want to go Pro – will it overwrite all our settings that we’ve made so far using the free theme? Or is it a simple upgrade…
— No you setting will be safe. But yes, you have to reassign Header Image, Menus and Widgets positions as there are additional options.Sakin
Keymaster@real_makkoy: To change the color of slider text background, you can edit the following color code and add it in “Appearance => Theme Options => Custom CSS” box.
#main-slider .entry-title span, #main-slider .entry-content { background-color: #fff; }For anchors withing a post, you need to add the HTML code manually from your post editor in text mode. Or you have to search for plugin at http://wordpress.org/plugins/ to do this. There is no default option to do that.
Sakin
Keymaster@Yuliya: You need to change the permalink to SEO friendly. You haven’t change your permalink. Please change the appropriate from “Settings => Permalinks”. To make this permalink to work either you need to have write access to
.htaccessfile or you need to add the.htaccessfile in root folder. See this http://codex.wordpress.org/Using_Permalinks . If you don’t know how to do it then you can ask your Hosting Server to create.htaccessfile for you.Sakin
Keymaster@highschoolfootballamerica: In Catch Kathmandu Pro theme there are 3 custom menu location “Primary Menu, Secondary Menu and Footer Menu”.
So, first you can create Menu from “Appearance => Menus”. Read more about this at http://catchthemes.com/blog/custom-menus-wordpress-themes/
1. Primary Menu: Then if you want to show your custom menu in header right section then you can assign your custom menu to “Primary Menu” location from “Appearance => Menus => Manage Locations”.
2. Secondary Menu: Same way you can assign your menu to “Secondary Menu” if you want it to display just below the header.
3. Footer Menu: Same way you can assign your menu to “Footer Menu” if you want it to display just below the content.Regards,
SakinSakin
KeymasterHello Kristi,
I don’t mean full content will show featured image. I mean there is no option in WordPress by default to show Featured Image. You have to use plugin. I just show there is only 2 options in WordPress.
Regards,
SakinSakin
KeymasterHello Yuliya,
For testimonial page, you can add the following css in “Appearance => Theme Options => Custom CSS” box.
.single-testimonials .entry-header { visibility: hidden; }To change the Read More text, go to “Appearance => Theme Options => Excerpt / More Tag Settings” and then change “More Tag Text”
You can change that text from your post/page excerpt box. See this screenshot showing how to add excerpt text in your post/page.
Regards,
SakinJune 5, 2014 at 2:25 am in reply to: Pre-sales Question: Form placement on top banner possible..?? #33530Sakin
Keymaster@Driven13: You can change that
right: 5%toright: 0and thentext-align: right. For detail customization, you need to hire customizer.Sakin
Keymaster@theresem: I don’t see Log in. see this screenshot of how I see your site
http://awesomescreenshot.com/0412xbyha5Sakin
Keymaster@Kendra: It’s mention in Theme Instructions page at http://catchthemes.com/theme-instructions/catch-kathmandu-pro/. Just read the topic “Featured Slider”. There you have option to choose slider type as Featured Post Slider or Featured Page Slider or Featured Category Slider or Featured Image Slider. Choose the type and fill in the necessary fields.
-
AuthorPosts
