Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@AiD: see this for tutorial http://www.wpbeginner.com/wp-themes/how-add-google-web-fonts-wordpress-themes/
Sakin
Keymaster@poornima.uk: Always add in your Site URL please and then only I can send your the Custom CSS.
Sakin
Keymaster@dommyt: You site URL please. Always add in your site URL so that we can check it and see that you are doing.
Sakin
Keymaster@llmancini: Add the following CSS in the “Custom CSS” box in your Theme Options panel for border and background in header search box.
#header .social-search form.searchform input {
background: #ccc;
border: 1px solid #000;
height: 33px;
width: 200px;
}
But for the social links color you need to replace the image.
Sakin
Keymaster@frederikwa: Free version is fully responsive that is why it will display different in mobile to make it fit. I said you cannot disable the responsive in free version.
Sakin
Keymaster@llmancini: This is for menu background color for your site. For hove I see that you have already added it.
#header #mainmenu ul li {
background-color: #ccff66;
border-bottom: 1px solid #fff;
border-right: 1px solid #fff;
}
Sakin
Keymaster@Rufi139: What do you mean by different header. Do you mean the Title of the pages. Then yes you can change the title of the pages that is not a problem. But if you are talking about Header image then no this is not supported in this theme.
Sakin
Keymaster@laura: We haven’t checked our theme with any e-commerce plugin. But from my opinion Woo Commerce will be best to use. But you might need to build support for that. Let us know and then we will help you.
Sakin
Keymaster@truthinablog: You can change the value of the color code and the font size as per your need and add the following css in “Custom CSS” box in your Theme Options
h1#site-title a {
color: #bbb;
font-size: 50px;
}
h2#site-description {
color: #666;
font-size: 14px;
}
Sakin
Keymaster@thess: Can you be more specific on what you want to change and how you want it to make it look like. Also add in your site url.
Sakin
Keymaster@paigeohliger: Yes you can add the link in The content of Featured Image Slider. But you need to add the following css in “Custom CSS” box to make the link text visible.
.featured-text p a { background: none; display: inline; position: relative; text-indent: 0; }Sakin
Keymaster@frederikwa: If you are using free version then you need to upgrade to Pro version to remove the responsive design.
For sidebar, can you send me the design screenshot and I will send your the custom css.
Sakin
Keymaster@marga: Yes, if you are just customizing CSS then you can use Custom CSS box and no need to create child theme.
Sakin
Keymaster@poornima.uk: If you are using Featured Image Slider, then you have option to add in Title and Description that will be content for the slider. But if you are using Featured Post Slider it will take the title and excerpt of the post.
Sakin
Keymaster@Dennis: In Cache Mustang theme there is widget called “Catchthemes: Tabbed Widget” from which you can add popular posts, recent posts and feature posts.
Further, yes there are plugin available for tab widgets for WordPress.
Sakin
Keymaster@frederikwa: Can you send me your site URL please? If you have Pro / Premium version of theme then you have option to disable responsive so that the mobile displays same as in desktop.
Yes full width will disable a sidebar. But you can achieve full with with sidebar through customizing css and using the layout with sidebar.
Sakin
Keymaster@golfer300: oh we are trying to add this option soon. Keep eye of change log http://catchthemes.com/changelogs/catch-box-theme/.
But yes, if you have Catch Box Pro theme then we have already arrange the header element in a way so that you can just add simple css to make it inline.
Sakin
Keymaster@linleffel: oh now I understand what you are talking about. This option is not there is simple catch theme. Actually simple catch theme is designed to make like this http://catchthemes.com/demo/simplecatch . Small header image on the left and social icons on the right. But if you have header image with larger then it will make the social icon go that.
By the way, we haven’t recommend the size for the header image. That size you have added is the recommendation for the Feature Post Slider- Width: 976px and Height: 313px.
Sorry to say but the feature that you have asked is not currently supported by Simple Catch Theme. You need to build child theme and do the customization. Just build a child theme with style.css and then copy the header.php and then move the items in header.php up and down like this
<div class="social-search">
<?php
// simplecatch_headersocialnetworks displays social links given from theme option in header
if ( function_exists( 'simplecatch_headersocialnetworks' ) ) :
simplecatch_headersocialnetworks();
endif;
// get search form
get_search_form();
?>
</div><!-- .social-search --><?php
// Funcition to show the header logo, site title and site description
if ( function_exists( 'simplecatch_headerdetails' ) ) :
simplecatch_headerdetails();
endif;
?>Sakin
Keymaster@bobbafett: If you have added child theme then it’s good and your changes will not be modified and also keep in track with the changelog http://catchthemes.com/changelogs/catch-box-theme/ . This will list the things that changes in various versions.
Now there is two option for custom css. One you can add it up in your child theme style.css this is best option but if you want the easy option then you can add it in “Custom CSS” box in your Theme Options panel
/* You can decrease the padding top for #main wrap */
#main { padding-top: 2em; }
/* For post title padding */
.entry-header hgroup .entry-title { padding-top: 15px; padding-bottom: 10px; }
/* For content below the title */
.entry-content, .entry-summary { padding-top: 2em; }
For adding files in child theme, it depends on which files you are changing it.
-
AuthorPosts
