Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@niamh.katee: But you are not using our theme to support you. Can you contact theme author from where you have purchase it. We only support theme developed and sold by us.
Sakin
Keymaster@aaspedia: Can you post in your site URL so that I can check in which error are you talking about.
There are so many know new CSS3 which doesn’t get validated but has been used by WordPress widely. You can even check the CSS validation for standard WordPress default theme “Twenty Sixteen Theme CSS Validation” . It has 50 errors and 249 warnings. So, this is not issue related to google ranking and SEO. I can confirm on that.
Sakin
Keymaster@clizana915:
1. You can add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:.site { padding-top: 0; } #fixed-header { position: relative; }
2. You can add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:
#header-toggle { display: none; }
Sakin
Keymaster@inmercyrejoice: You can change the color code in the following css as per your need and then add it in custom css box.
#primary .entry-title, #primary .entry-title a { color: #680000; }
Sakin
Keymaster@rmjtrif-com: You don’t need FTP access to update it. You can update it from your WordPress Dashboard. Did you check in the screencast https://www.youtube.com/watch?v=W95SuabDZi8
Sakin
Keymaster@inmercyrejoice: Can you post in your site URL so that I can check in.
Sakin
Keymaster@kip: Add the following css:
#branding #mobile-header-left-nav ul.menu a { line-height: 1.2; }
Sakin
Keymaster@rmjtrif-com: We have made update little easy. You can see our screencast at https://www.youtube.com/watch?v=W95SuabDZi8 where our Catch Updater, have option to create backup as well ad update it. So, just in case if there is anything wrong, you can revert back to backup version.
Sakin
Keymaster@Kip: Oh you are adding in your child theme style.css then it should be as below:
.site .sidr { width: 200px; } body.sidr-open { left: 170px !important; }
Sakin
Keymaster@kip: For catch box pro theme, you need to user the forum https://catchthemes.com/support-forum/forum/catch-box-pro-premium/
For that, you can reduce the width in the following css as per your need and then add it in your child them stye.css file
.sidr { width: 260px; }
June 12, 2016 at 9:13 pm in reply to: Changing Language in Promotional Headline + Featured Content #93388Sakin
Keymaster@kayae: Sorry adventurous free theme doesn’t support qtranslateX plugin fully. For that you need to upgrade to Adventurous Pro theme.
Sakin
Keymaster@9punkt2: Hello Alex, but that menu is not from our theme. It’s from Mega Menu plugin. So, you need to solve from plugin. If this was theme menu then we can work it out.
Sakin
Keymaster@chd3143: Thanks for contacting us and access. We have been able to solve this issue in version 1.2.1.
Sakin
Keymaster@alwilleford: Pelase post in your site URL and then I can check in. Also post in your image URL that you want to add as background.
Sakin
Keymaster@centaine: There is slight loading issue of mobile menu css. Can you try adding the following css in “Appearance => Customize => Theme Options => Custom CSS” box. Also clear your cache from “WP Super Cache” plugin after you add this css:
.sidr.left { left: -260px; right: auto; }
Sakin
Keymaster@monicavilas: thanks 🙂
Sakin
Keymaster@monicavilas: Nice 🙂
Sakin
Keymaster@gaiabee: Yes, your site
og:image
looks fine. But now you have 2 images.
1. Form Yoast SEO: which is showing as below. You can change this image from “SEO => Social => Facebook”. There you can upload your Frontpage image, which will be for your header image and also default image.
<meta property="og:image" content="http://voicesoftheselves.com/wp-content/uploads/2016/02/MG_3640-200x300.jpg" />
2. You need to remove another
og:image
from header. The following code:
<meta property="og:image" content="http://voicesoftheselves.com/wp-content/uploads/2016/02/FB_logo_centered2_200x200.jpg" />
Note: If you are trying to add this image http://voicesoftheselves.com/wp-content/uploads/2016/02/FB_logo_centered2_200x200.jpg as your Facebook image for Homepage, then just go to “SEO => Social => Facebook” and paste this image url in “Image URL:” and “Save Changes”
Sakin
Keymaster@monicavilas: Actually, Catch Base free doesn’t support multi-language and you might want to consider using Catch Base Pro theme. But as per your message, you are saying it’s working in customizer then can you try adding the following code in your child theme functions.php file:
if ( ! function_exists( 'catchbase_wpml_invalidcache' ) ) : /** * Template for Clearing WPML Invalid Cache * * To override this in a child theme * simply create your own catchbase_wpml_invalidcache(), and that function will be used instead. * * @since Catch Base Pro 3.0 */ function catchbase_wpml_invalidcache() { delete_transient( 'catchbase_featured_content' ); delete_transient( 'catchbase_featured_slider' ); delete_transient( 'catchbase_footer_content' ); delete_transient( 'catchbase_promotion_headline' ); delete_transient( 'catchbase_featured_image' ); delete_transient( 'all_the_cool_cats' ); } // catchbase_wpml_invalidcache endif; add_action( 'after_setup_theme', 'catchbase_wpml_invalidcache' );
-
AuthorPosts