Forum Replies Created
-
AuthorPosts
-
Pratik
MemberHi @giuliog,
That can be achieved too. For that you can can add following CSS code in Appearance=> Customize=> Theme Options => Custom CSS box:
#header-left { width: 87%; // Increase or decrease 87 to push or pull the logo near search bar } #site-logo { float: right; }Please note the comment too.
Let me know if this works out or not. You might want to remove following code that added a gap between logo and site title since there will be extra gap now when logo moves towards search.
#hgroup.with-logo { margin-left: 15px; }Regards,
PratikPratik
MemberHi @pollloid,
Our theme is SEO Friendly. We also recommend Yoast SEO plugin for SEO.
If you upgrade to Pro, then all the theme options will migrate to Pro version as well.
The pro and free version both have the same option panel. Pro version will only have extra options. If you want to see which features are extra in pro version, you can visit this link.
For language, once you change the language of WordPress, the language of theme will automatically change if it has the template for language, If the language does not change, then the .po and .mo files are missing. For that you will need to create those files to support your language. We can give you instructions for that. The theme is translation-ready.
Let me know if you have any more queries.
Regards,
PratikPratik
MemberHi @riccrom123,
I cannot see a logo currently in your site. Please add it and let me know. Then I will provide you with CSS code.
———————————————————————————
Hi @marga,
Do you want to remove gap in header content and center the logo a well? For that, you can add following CSS code in Appearance=> Customize=> Theme Options => Custom CSS box:/* Remove Header content top gap */ #header-content { padding-top: 0; } /* To center logo */ #site-logo { margin: 0 auto; width: 100%; }Let me know how it works out.
Regards,
PratikPratik
MemberHi @giuliog,
To add a bit of distance between logo and title, , you can add following CSS code in Appearance=> Customize=> Theme Options => Custom CSS box:
#hgroup.with-logo { margin-left: 15px; }You can increase or decrease 15 to increase or decrease the gap.
Let me know if this works or not.
Regards,
PratikPratik
MemberHi @yogawithagnes,
I am glad it worked out.If you liked our theme and support, please give us your valuable review at https://wordpress.org/support/view/theme-reviews/clean-journal.
Thanks,
PratikPratik
MemberHi @giuliog,
I cannot understand exactly what you mean. Do you want the title and description to be aligned with logo, or in the middle with respect to the vertical height of the logo?
If you want the site title and tagline to be aligned in middle with the logo, you can add following CSS code in Appearance=> Customize=> Theme Options => Custom CSS box:#hgroup.with-logo { margin-top: 10px; }Regards,
PratikPratik
MemberHi @jordan,
I have already answered you in here: https://catchthemes.com/support-forum/topic/older-post-disappeared-in-theme-update/#post-85318Please add only one support query per issue,
Regards,
PratikPratik
MemberHi @jordon,
Your theme is Catch Box. And from the site, it looks like you are using Jetpack Infinite Scroll Feature. Maybe there is a conflict via a plugin that is adding some css to hide our CSS.
To fix it, you can add following CSS code in Appearance=> Customize=> Theme Options => Custom CSS Styles box:
/* Infinite Scroller */ #content #infinite-handle { display: block; padding-bottom: 2em; text-align: center; width: 100%; } #content #infinite-handle span { background: none transparent; padding: 0; } #infinite-handle span button { background-color: #444; font-size: 14px; padding: 10px 0; width: 100%; } #infinite-handle span button:hover, #infinite-handle span button:focus { background-color: #000; font-size: 14px; padding: 10px 0; }Let me know if this works or not.
Regards,
PratikFebruary 13, 2016 at 7:36 am in reply to: Issues with Featured Content images on high resolution screen (Firefox) #85315Pratik
MemberHI @Jeffery,
This is strange. We will look into this. I have tagged @sakin on this post as well. Thank you for your patience.
Regards,
PratikPratik
MemberHi @yogawithagnes,
If you upgrade to Clean Journal Pro version, that area will become Header Sidebar Widget Area. You will have option to add other widgets in this area and remove it.
In free version, we can hide it by using Custom CSS. To hide that bar, you can add following CSS code in Appearance=> Customize=> Theme Options => Custom CSS box:
.sidebar-header-right { display: none; }Let me know how it works out.
Regards,
PratikPratik
MemberPratik
Memberhi @ShoreBeing,
To increase footer menu font size, you can add following CSS code in Appearance=> Customize=> Theme Options => Custom CSS box:#menu-footer-menu a { font-size: 25px; /* Increase or decrease 25 to desired number */ font-weight: bold; /* Remove this line to remove bold effect */ }You can increase/decrease the size by editing the font-size attribute number(in code 25px). The font-weight attribute makes the text bold. You can remove the line if you do not want to be bold.
Let me know how it works out.
Regards,
PratikPratik
MemberHi @rohit,
There is no exact size for header image in Catch Everest theme. What you can do is skip the cropping when you add the header image.Recommended size is: 1140px width
Regards,
PratikPratik
MemberHi @Alex,
Yes, you are right, the Featured Slider only has those options. You can use child theme to customize it, but since you have already replaced it with a plugin, I am going to skip that part.Let me know if there is anything else. Have a nice day.
Regards,
PratikPratik
MemberHi @marga,
Although pagespeed insight is a good way to view site info, it is nearly impossible for a theme to get 90%. You can check google.com for page speed and it will only get about 78 and 92 on mobile and desktop.
There are a lot of other issues to take into consideration as well like server(You will need a dedicated server), plugins, images optimization, etc.
If you check our demo site: https://catchthemes.com/demo/catch-responsive/ you will get around 65 and 84 in mobile and desktop respectively. This is mainly due to js and css from plugins like jetpack, contact form 7, wp page navi, etc.
These kinds of tests are not 100% accurate. So relying in them 100% is not recommended.
Let me know if you have any queries.
Regards,
PratikPratik
MemberHi @DMP Lakshitha,
This is achievable but will require you to do a bit of customization via child theme. The details for child theme is here. Then you need to add following code in the child theme’s functions.php file and add footer menu:
/** * Remove Footer Menu from its current position to site generator area * */ function catchevolution_move_footer_menu() { remove_action( 'catchevolution_after_footer_sidebar', 'catchevolution_footer_menu', 10 ); add_action( 'catchevolution_site_generator', 'catchevolution_footer_menu', 11 ); } add_action( 'init', 'catchevolution_move_footer_menu' );What this will do is remove the footer menu from its current position and shift it between social icons and footer copyright section.
After you do this, ping me here again and i will provide you with CSS codes required to make the menu and footer copyright center because I need to see it live before giving you the CSS codes.
Regards,
Pratik
Let me know after you have done following stepsPratik
MemberHi @husker,
To make parent menu inactive when child menu is active, you can add following CSS code in Appearance=> Customize=> Theme Options => Custom CSS box:.catchresponsive-nav-menu .current-menu-item > a, .catchresponsive-nav-menu .current-menu-ancestor > a, .catchresponsive-nav-menu .current_page_item > a, .catchresponsive-nav-menu .current_page_ancestor > a, .sidebar-header-right .widget_nav_menu .current-menu-item > a { background-color: #cc0c2f; color: #fff; }Let me know how it goes.
Regards,
PratikPratik
MemberHi @King Tao,
I am not sure what you mean by classification of words. Can you post in with reference to your site URL?
Regards,
PratikPratik
MemberHi @Sanket,
1. How can I limit the number of posts on the slider. I want the latest 5 posts to display on the slider and not the older ones.
* The slider in free version has option to show the number of posts but not to show the latest post. Simple Catch Pro version has a Featured Category Slider, with which you can achieve what you want. Other features in pro version can be found here.2. Is Simple Catch a responsive theme or not?
* Unfortunately, Simple Catch Theme is not responsive. You can use any other theme from our themes(including free ones) and it will be responsive.3. How can I reduce the size of Featured Image Slider. I want to reduce height of the slider.
* To achieve this, you will need to do some customization via child theme. For details on child theme, you can go here. Then in the child theme’s functions.php file, add following code:function simple_catch_change_image_size() { add_image_size( 'slider', 976, 313, true); } add_action( 'after_setup_theme', 'simple_catch_change_image_size', 11 );You can change the width: 976px and height 313px to the size you want. After this, you need to regenerate the thumbnails. For that, install Regenerate Thumbnail Plugin and follow its instructions.
4. Can you recommend a compatible Call Now button plugin for this theme? The ones I searched on WP are not compatible with Some Catch.
I am not sure If I can recommend a plugin. You can search for plugins in WordPress.org plugins repo.Pratik
MemberHi @husker,
I am assuming your site is http://bayareahuskers.org/wp/.
I looked at the site and the line breaks are occurring after words and not between.
Can you let me know which device you have looked at?
Regards,
Pratik -
AuthorPosts
