Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@klausm: are you trying to create the line height of the text or spacing after each paragraph that is margin bottom.
1. For margin bottom, just decrease the margin-bottom form 40px to what ever you want in the following css and then add it in “Appearance => Customize => Theme Options => Custom CSS Options” box:
@media screen and (min-width: 768px) { p { margin-bottom: 40px; } }
2. If it’s line height, then you need to decrease 1.8 to your desire unit and then add it in “Appearance => Customize => Theme Options => Custom CSS Options” box:
body, button, input, select, textarea { line-height: 1.8; }
Sakin
Keymaster@nican: Yes, it’s supported only in Pro version or you need to build child theme (https://catchthemes.com/blog/create-child-theme-wordpress/) and add the following code in your child theme functions.php file
if ( ! function_exists( 'adventurous_qtranslate_invalidcache' ) ) : /** * Template for Clearing qtranslate Invalid Cache * * To override this in a child theme * simply create your own adventurous_qtranslate_invalidcache(), and that function will be used instead. * * @since Adventurous 1.0 */ function adventurous_qtranslate_invalidcache( $menu_item ) { delete_transient( 'adventurous_post_sliders' ); delete_transient( 'adventurous_page_sliders' ); delete_transient( 'adventurous_category_sliders' ); delete_transient( 'adventurous_image_sliders' ); delete_transient( 'adventurous_homepage_headline' ); delete_transient( 'adventurous_homepage_featured_content' ); delete_transient( 'adventurous_footer_content' ); delete_transient( 'adventurous_footercode' ); delete_transient( 'adventurous_featured_image' ); } // adventurous_qtranslate_invalidcache endif; add_action( 'after_setup_theme', 'adventurous_qtranslate_invalidcache' );
About the search, it should be automatically translated with your language files. Don’t change in theme options.
Sakin
Keymaster@klausm: Can you post in your site URL and then I can check in why it’s not working for you.
Sakin
Keymaster@klausm: Sorry I don’t get it what are you trying to do it. Can you explain in reference with your site URL?
Sakin
Keymaster@mbburton21: Can you post in your site URL? So, that I can test it.
Sakin
Keymaster@j-mouretme-com: Can you send me the link from where you get it solve from WPML. As WPML compatibility team is asking how you got that answer.
Sakin
Keymaster@gaiabee: In you are confusing about how to post in new topic, then check out https://www.youtube.com/watch?v=ex9rByi_a3Q
Yes, you can control layout from two places:
1. For overall layout, you need to go to “Appearance => Customize => Theme Options => Layout Options”
2. Then you can also change it in individual page/post. For that, just edit page/post which you want to edit. Then below your content editor, you will see “Clean Box Options” meta box, there you can click on “Layout Options” and change as per your need.Sakin
Keymaster@landyvlad:
Hi Michael,For sales related questions, you can directly contact our sales at https://catchthemes.com/contact-us/
Regards,
SakinMay 3, 2016 at 9:33 am in reply to: Issues with Featured Content images on high resolution screen (Firefox) #90891Sakin
KeymasterHi Jeff,
Yes, we need to look at it in details. When I search in google I found lot of sites using Photon has this type of issue.
Regards,
SakinApril 30, 2016 at 10:53 pm in reply to: Issues with Featured Content images on high resolution screen (Firefox) #90778Sakin
KeymasterHi Jeff,
This is strange and sorry I am trying to find out the issue. Can you check our demo at https://catchthemes.com/demo/catch-responsive/ and see if there is issue. In not then there must be issue in your configuration.
Have you activate “Photon” module from JetPack plugin? Can you go to “Jetpack => Settings” and check in. If it’s active then can you deactivate that and check in.
Regards,
SakinApril 30, 2016 at 9:07 pm in reply to: How to remove horizontal line under navigation menu bar #90774Sakin
Keymaster@samabdallah: Can you explain your issue in reference to your site URL. So, that I can check in and suggest you the solution.
Sakin
Keymaster@j-mouretme-com: Hello Jpm,
Yes, please share the images and I have contacted WPML compatibility team to check our theme against this issue. We will update soon after we get reply from them.
Thanks a lot.
Regards,
SakinApril 29, 2016 at 11:06 pm in reply to: Issues with Featured Content images on high resolution screen (Firefox) #90710Sakin
Keymaster@jeffspelmancomcast-net:
Hello Jeffrey,Did you regenerate the thumbnail after you active this theme? If you haven’t done it then please do it now by using this plugin https://wordpress.org/plugins/regenerate-thumbnails
Regards,
SakinSakin
Keymaster@mupa: That’s not from our theme. You can check in our theme style.css line no 1305, it’s clearly black. But I don’t know from where you are getting different. Can you clear your cache and check in. I see that you have
Cache Enabler by KeyCDN
#masthead { background-color: 000; color: #ddd; height: 100%; width: 100%; }
-
AuthorPosts