Forum Replies Created
-
AuthorPosts
-
Pratik
ParticipantPratik
Participanthi @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
ParticipantHi @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
ParticipantHi @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
ParticipantHi @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
ParticipantHi @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
ParticipantHi @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
ParticipantHi @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
ParticipantHi @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
ParticipantHi @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,
PratikPratik
ParticipantHi DMP Lakshitha,
I looked at the site and it looks like you have added the menu to where you want using Footer Widgets.
Is this problem solved?
Please let me know.
Regards,
PratikFebruary 6, 2016 at 8:14 pm in reply to: Social media icons not visible when using Header Right Menu #84780Pratik
ParticipantHI Alex,
Since you are using Catch Responsive Pro version, this feature is available. You can Setup Featured Image Slider to show a series of images from the media library. Instructions to add Featured Image Slider is here.Let me know if you have any problem.
Regards,
PratikPratik
ParticipantHi Erica,
By default, the tags will appear there. Make sure you have added tags to the post and they will appear there by default.
Regards,
PratikPratik
ParticipantHI Erica,
– can I choose some fixed images to show there? like the demo one but with pics I choose
* This is only possible if you upgrade to Clean Box Pro. Pro version has a Featured Image Slider, with which you can show custom images. Other features in pro version can be found here– how do I prevent the featured image of a post from showing on top of the title on the home page? (if at all possible)
You can remove featured image by two ways.
1. By Going to Appearance=> Customize=> Theme Options => Archive Content Layout and selecting Show Full Content (No Featured Image) option. However, this will show the full content rather than the excerpt.
2. You can only remove the image and then then show excerpt too. But for this you will need to do some customization via child theme. For this, you need to do a bit of customization via child theme. First, you need to add the child theme for Clean Box. The details for child theme is here.
Then, in the child theme’s functions.php file, add following code:/** * Template for Featured Image in Archive Content * * Override Parent theme's Template for Featured Image in Archive Content clean_box_archive_content_image to disable content image */ function clean_box_archive_content_image() { return; }
Pratik
ParticipantHi Erica,
For to amend the width of the 3 columns in the footer and have text in a “text” widget to show in italics, you can add following CSS in Appearance=> Customize=> Theme Options => Custom CSS box:#supplementary #first, #supplementary #third { width: 330px } #supplementary #second { font-style: italic; width: 496px; }
Regards,
PratikPratik
ParticipantHi @wanderlust-effect,
For this, you need to do a bit of customization via child theme. First, you need to add the child theme for Clean Box. The details for child theme is here.Then, in the child theme’s functions.php file, add following code:
/** * Override Parent theme primary menu function to show the Primary Menu With site branding * */ function clean_box_primary_menu() { $options = clean_box_get_theme_options(); ?> <div id="fixed-header-top"> <?php clean_box_site_branding(); ?> <div class="wrapper"> <div id="mobile-primary-menu" class="mobile-menu-anchor fixed-primary-menu"> <a href="#mobile-primary-nav" id="primary-menu-anchor" class="genericon genericon-menu"> <span class="mobile-menu-text screen-reader-text"> <?php esc_html_e( 'Menu', 'clean-box' ); ?> </span> </a> </div><!-- #mobile-primary-menu --> <?php $logo_alt = ( '' != $options['logo_alt_text'] ) ? $options['logo_alt_text'] : get_bloginfo( 'name', 'display' ); if ( isset( $options[ 'logo_icon' ] ) && $options[ 'logo_icon' ] != '' && !empty( $options[ 'logo_icon' ] ) ){ echo '<div id="logo-icon"><a href="' . esc_url( home_url( '/' ) ) . '" title="' . esc_attr( get_bloginfo( 'name', 'display' ) ) . '" rel="home"> <img src="' . esc_url( $options['logo_icon'] ) . '" alt="' . esc_attr( $logo_alt ). '"> </a></div>'; } ?> <nav class="nav-primary search-enabled" role="navigation"> <h1 class="assistive-text"><?php _e( 'Primary Menu', 'clean-box' ); ?></h1> <div class="screen-reader-text skip-link"><a href="#content" title="<?php esc_attr_e( 'Skip to content', 'clean-box' ); ?>"><?php _e( 'Skip to content', 'clean-box' ); ?></a></div> <?php if ( has_nav_menu( 'primary' ) ) { $clean_box_primary_menu_args = array( 'theme_location' => 'primary', 'menu_class' => 'menu clean-box-nav-menu', 'container' => false ); wp_nav_menu( $clean_box_primary_menu_args ); } else { wp_page_menu( array( 'menu_class' => 'page-menu-wrap' ) ); } ?> </nav><!-- .nav-primary --> <div id="header-toggle"> <a href="#header-toggle-sidebar" class="genericon"><span class="header-toggle-text screen-reader-text"><?php _e( 'Show Header Sidebar Content', 'clean-box' ); ?></span></a> </div> <div id="header-toggle-sidebar" class="widget-area displaynone" role="complementary"> <?php if ( is_active_sidebar( 'header-toggle' ) ) { ?> <?php dynamic_sidebar( 'header-toggle' ); ?> <?php } else { ?> <section class="widget widget_search" id="header-serach"> <?php get_search_form(); ?> </section> <?php if ( '' != ( $clean_box_social_icons = clean_box_get_social_icons() ) ) { ?> <section class="widget widget_clean_box_social_icons" id="header-social-icons"> <div class="widget-wrap"> <?php echo $clean_box_social_icons; ?> </div> </section> <?php } } ?> </div><!-- #header-toggle-sidebar --> </div><!-- .wrapper --> </div><!-- #fixed-header-top --> <?php } /* * Remove Site branding from its current hook on Parent theme */ function clean_box_remove_site_branding_hook() { remove_action( 'clean_box_header', 'clean_box_site_branding', 70 ); } add_action( 'init', 'clean_box_remove_site_branding_hook' );
There are two function. First one overrides the Parent theme function to show site title and tagline above primary menu.
The second function removes the current site title.
For changing the font of site title, you can add following CSS in Appearance=> Customize=> Theme Options => Custom CSS box:
.site-title { font-family: "Times New Roman", Georgia, Serif; }
You can change font-family to your desired font. To know more about font family, you can visit this link.
Let me know if this solves your problem or not.
Regards,
PratikPratik
ParticipantHi Erica,
For sidebar and post space, add following code to Appearance=> Customize=> Theme Options => Custom CSS box:
`
#main {
width: 810px;
}
.sidebar-primary section{
margin-bottom: 10px;
}
‘For image in text widget, you need to know a bit of Html. You can add it by adding htnl code. Its details are here.
Let me know how this works out.
Regards,
PratikPratik
ParticipantHI @marga,
If there are small changes, it is recommended to use Custom CSS from theme options. If there are a lot of changes(like revamping the whole site), then the CSS from editor should be used.
Installing both Catch Web Tools and our theme should not have a problem with Custom CSS, unless they both have different CSS on the same element. In which case, there might be conflicts where only one will work.
If it has worked, then there is no need for backend access. In future, if this possesses problems, then we can look into it again.
Let me know if you have anything else.
Regards,
PratikPratik
ParticipantHI @marga,
It should have worked, unless it is enqueued before the parent theme css(you can see it in functions.php file) or if any other source overrides the CSS.
Custom CSS is pushed at the furthest header as possible, so that there are no conflicts. Maybe this is the reason, but I cannot say for sure unless I see all the files.
Regards,
Pratik -
AuthorPosts