Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@sryu: Thanks for your appreciation and yes there has been bug report about rem in chrome and will be fixed soon by Chrome developers.
Sakin
KeymasterYou footer size is 80px. You can increase the height of footer by adding in css like
#site-generator { min-height: 100px; }But since this is responsive design site, so make the height increase only in large screen. then you can edit that css as:
@media screen and (min-width: 961px) { #site-generator { min-height: 100px; } }Sakin
KeymasterHeight depends on the height of the footer. So, I don’t know what the height of you site footer. You can measure it.
Sakin
KeymasterHi Jason,
For the top, you can change the following padding as per your need
body { padding-top: 2em; } #header-content { padding-top: 2.5em; }For the bottom, you can change the following padding as per your need
#header-content { padding-bottom:2.5em; }After you change these padding, you can add it in “Appearance => Theme Options => Custom CSS” box.
Regards,
SakinSakin
Keymaster@drlapco: What do you want to do it? It uses the class
entry-titleand it has parent class aspost-2and top parent as ID ascontentSakin
Keymaster@sryu: Yes it must be chrome rem issues. But I though this has already been fixed by Chrome. Are you using latest version of Chrome.
Sakin
Keymaster@dfwrgjeff: You can adjust the margin bottom in the following css as per your need and then add it in “Appearance => Theme Options => Custom CSS” box.
#featured-post { margin-bottom: 50px; }Sakin
KeymasterHello A.J.
You image http://www.idaat.se/wp-content/uploads/2014/06/5567852_xxl.jpg is too large that is why it is just showing the top orange color of that image. So, you need to reduce that image with maximum width of 1000px ad height of your footer. Then it will work as you desire.
Regards,
SakinSakin
Keymaster@Kevin: Yes this is server related issue. So, send this link error message to your Website Hosting Support and they will be able to fix it.
Sakin
KeymasterHi Sbartsch,
This is really strange as i try refresh and check in your site at least 20 time but no issues found in Chrome. I will try tomorrow as well and see if I can generate that issue. When you have this issue does your site get zoomed in.
For now can you try adding in the following css in “Appearance => Theme Options => Custom CSS” box.
body > div { font-size: 1.4rem; }Regards,
SakinSakin
Keymaster@luismarioochoa: So there in now option to do that. As this is not another mobile theme. If you want to add separate mobile theme then you can use Jetpack Plugin and active mobile module or WPtouch Mobile Plugin
Sakin
Keymaster@real_makkoy: I see there is issue with the custom css that you have added in. I found one HTML code in Custom CSS box. This custom css box is only for adding additional css not html code. So, remove the following HTML code from “Appearance => Theme Options => Custom CSS” box.
<a href="http://www.bloglovin.com/blog/11914493/?claim=f9k83uevvxp">Follow my blog with Bloglovin</a>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.
-
AuthorPosts
