Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@Herbie: Sorry I don’t get it what you mean. Can you explain in reference with your site URL.
Sakin
Keymaster@kathiejs: You can change the size in the following css as per your need and then add it in “Appearance => Theme Options => Custom CSS” box:
/* Category Widget */ #secondary .widget_categories ul { font-size: 16px; } /* breadcrumb Widget */ #secondary .widget_breadcrumb_navxt { font-size: 16px; }Sakin
Keymaster@Kaydev: WordPress Theme shouldn’t support shortcodes see this https://make.wordpress.org/themes/handbook/review/required/explanations-and-examples/.
Also the shortcode
[display-posts]is not from WordPress core. It’s from plugin https://wordpress.org/plugins/display-posts-shortcode/. So, you need to activate this plugin to use that shortcode.For title, it take from your site title and page title. So, you need to edit that. Further, you can use plugin like http://wordpress.org/plugins/wordpress-seo/ to edit your SEO/Browser title.
Sakin
Keymaster@brian If you are not using child theme, then you can hide it only by using Custom CSS. For that you need to post in your site URL.
Sakin
Keymaster@eric: Just add the following css in “Appearance => Theme Options => Custom CSS” box:
body, input, textarea { color: #000; } #branding #access, #colophon #access-footer { background: none #000; }Sakin
Keymaster@dpoulton: It depends on your settings of the website and also we have manage that with css. For now, I guess the maximum height can be 75px and maximum width 700px. But it’s all up to you. Just upload the image and maybe share your site URL if you have issue then I can suggest you.
Sakin
Keymaster@Ruthy: That is form your page setting and background image and I don’t have any control on it. But you can try to remove white space by adding in the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:
.page-id-572 #content .wrapper, .page-id-572 #content .hentry { padding-top: 0; padding-bottom: 0; } .page-id-572 #content .hentry, .page-id-572 #content .hentry .vc_custom_1434726924507 { margin-bottom: 0; }Sakin
Keymaster@alexch: You can hide that from custom css. For that, you can just add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:
.post-navigation { display: none; }To translate any theme text, you need to create .po and .mo files from .pot file you will find inside languages folder “catch-responsive/languages/catchresponsive.pot”. You can use free software form http://poedit.net/.
Let me know if you are interested in translating then I can email you more details and also we will include that file in language folder in next version. So, it will stay in theme when you update as well.
Sakin
KeymasterHi Richard,
Thanks for your appreciation and purchasing Catch Responsive Pro theme. Oh wow, you have long list of questions.
1. To change the size of content box in the slider, you can change the width in the following css and then add it in “Appearance => Customize => Theme Options => Custom CSS Options” box:
@media screen and (max-width: 701px) { #feature-slider .entry-container { width: 60%; } }To change the background color of the box, you can change the rgba color code in the following css as per your need and add it in “Custom CSS Options” box:
#feature-slider .entry-container { background: rgba(0,0,0,0.7); }2. You can remove that by making padding bottom zero. For that, you can add the following css in “Custom CSS Options” box:
#feature-slider { padding-bottom: 0; }3. When you are using Footer 1 and Footer 2 area, each area will take 50% of the whole footer area. But the left alignment is left of the footer 1 text will start from left and same with footer area 2. For this you can either, center the text by adding the following css:
#supplementary .widget-area { text-align: center; }Or you can just text alight right to footer area 1:
@media screen and (min-width: 479px) { #supplementary #first.widget-area { text-align: right; } }4. To remove the search in menu above the slider, go to “Appearance => Customize => Navigation” and check option “Check to disable search box in Primary Menu” then Save & Publish it.
5. For mailchip form in homepage. Yes, that should be control from plugin. Looking at the code, you can add the following css in “Custom CSS” box:
.entry-content .content-column.one_half { display: block; float: none; margin: 0 auto; width: 50%; }Note: if you can remove code
style="padding-right:100px;"from mail chimp form then it will be great.Sakin
Keymaster@helpme:
1. Your site Title and tagline is not reducing in mobile devices as your have fixed size in custom css. Either you need to remove that or add mobile devices size. You can add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” Box:/* Mobile Font Sized for Title and Tagline @media screen and (max-width: 768px) { .site-title { font-size: 28px; } .site-description { font-size: 18px; } }2. You can add the following css to hide author from entire site.
.entry-meta .by-author, .entry-meta .byline { display: none; }3. For comment text, you can remove that from option panel directly in Pro version but in free version, you can hide it with custom css. For that, you can add the following css:
.form-allowed-tags { display: none; }Sakin
Keymaster@Dennis: Yes, that Custom CSS box is there to add in your own css which will overwrite theme css.
Sakin
Keymaster@knudkp: Yes, just go to “Appearance => Widgets” and move the position of your custom menu and social icon in “Header Right” sidebar.
Sakin
Keymaster@Pius: You don’t have option to attach image in this forum. You can just post in link. So, you can upload your image in your website or any photo sharing site and add in URL here. Also please post in your site URL so that I can check in your header and suggest you solution.
To make your header toggle show in hover. You need to add script. So, first activate plugin http://catchthemes.com/wp-plugins/catch-web-tools/ and then go to “Catch Web Tools => Webmaster Tools => Enable Webmaster Tools”, check “Enable Webmaster Module” and then add the following code in “Catch Web Tools => Webmaster Tools => Header and Footer Scripts => Enter scripts or code you would like output to wp_footer()” box:
<script type="text/javascript"> jQuery(document).ready(function() { var jQueryheader_search = jQuery( '#header-toggle' ); jQueryheader_search.hover( function() { var jQueryform_search = jQuery("div").find( '#masthead' ); if ( jQueryform_search.hasClass( 'displaynone' ) ) { jQueryform_search.removeClass( 'displaynone' ).addClass( 'displayblock' ).animate( { opacity : 1 }, 300 ); } else { jQueryform_search.removeClass( 'displayblock' ).addClass( 'displaynone' ).animate( { opacity : 0 }, 300 ); } }); }); </script>Here goes the donation link http://catchthemes.com/donate/
Sakin
Keymaster@Dennis: There is no option to to show only in you blog page. It have option to show in Entire Site or just Homepage. So, if you want to hide in your homepage, then you need to build child theme, copy function
catchevolution_slider_display()to your child themefunctions.phpfile and edit the condition as per your need. For child theme refer to http://catchthemes.com/blog/create-child-theme-wordpress/.But if just want to hide using Custom CSS. Then you can go to “Appearance => Theme Options => Featured Post Slider => Slider Options” and select “Entire” in “Enable Sidebar” option and then add the following css in “Appearance => Theme Options => Custom CSS” box:
.home #slider { display: none; }Sakin
Keymaster@Anne:
1. You can center your social icon in your sidebar by adding in the following css in “Appearance => Theme Options => Custom CSS” box:.widget .social-profile { text-align: center; } .social-profile ul li { display: inline-block; float: none; }Sorry, I don’t understand what you mean. To reduce the padding in your sidebar widget, you can change the padding in the following css and then add it in “Appearance => Theme Options => Custom CSS” box:
#secondary .widget { padding: 30px; }2. For that, you can adjust padding and margin bottom in the following css as per your need and then add it in “Appearance => Theme Options => Custom CSS” box:
#supplementary .widget { padding: 30px; } .widget_image img { margin-bottom: 30px; }Sakin
Keymaster@calchandoman: You can change the size in the following code as per your need. In the following code 400 is width and 225 is height. After you change that, you need to add the following code in your child theme
functions.phpfile. After you add that in your child theme, you need to regenerate thumbnail using Regenerate Thumbnail plugin http://wordpress.org/plugins/regenerate-thumbnailsfunction fullframe_child_theme_setup() { // Used for Featured Content, Featured Grid Content and Archive/blog Featured Image add_image_size( 'fullframe-featured-content', 400, 225, true); // used in Featured Content Options Ratio 16:9 } add_action( 'after_setup_theme', 'fullframe_child_theme_setup', 11 ); -
AuthorPosts
