Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@mstaudt131: for search box in the header border, you can just add the following CSS in “Custom CSS” box in your Theme Option panel.
#branding .searchform .search-box { border: 1px solid #000; line-height: 33px; }
But for adding blogspot icon in the social icon list. This is bit complicated. First you need to add icon in this image social-profile.png and then build child theme. Where you need to remove the current social icon function
remove_action( 'simplecatch_sidebartop', 'simplecatch_headersocialnetworks', 10 );
and then add your action for the function and edit the css. If you are not a developer then I recommend to hire developer for this or use tweaky services.Sakin
Keymaster@rebekahvolinsky: What is your site URL? And are you using the latest version of the Theme. If not then update your theme and check it.
If this doesn’t fix it then I need to look at your WordPress admin panel. Let me know it.
Sakin
Keymaster@jmyss: If you want to use the Featured Post Slider without the title and description then you can upgrade to Catch Box Pro theme where there is Featured Image Slider which gives you control to upload your own image, title, description and links all optional.
For content layout: Catch Box theme has 2 content layout. 1) Show excerpt: which will show the featured image of the post and excerpt text and 2) Show full content: which will show the full content exactly like in the post. You can select the option through Appearance -> Theme Options -> Content layout.
For more on Theme instruction check this out catchthemes.com/theme-instructions/catch-box/
Sakin
Keymaster@kalemw: It looks like there is conflict with the plugins you used. Can you deactivate the plugins one by one and check in.
Sakin
Keymaster@arichardc: Is very simple Take the large size image first and make it all image with the same size. Here I don’t mean stretching image. But keep your small image in the large area making it center with the background. Then it will look centered image.
Sakin
Keymaster@mwjohnston1: If you want the links in the Sidebar widget then you can try in Menu widgets or Links widget.
About removing the comment box what you did. As mention in this page http://en.support.wordpress.com/enable-disable-comments/ . You need to uncheck Allow Comment in the Discussion Box in your pages.
Sakin
Keymaster@paigeohliger: Yes this version is good one. Also Theme Option panel has been redesigned to make it easy to navigate.
Also there is Theme Instructions for Catch Mustang: http://catchthemes.com/theme-instructions/catch-mustang/
Sakin
KeymasterFor pages
.page .entry-header {
padding-bottom: 0;
}
But for post and category that should work fine
.entry-header {
padding-bottom: 0;
}
Sakin
Keymaster@tamerch: thanks for informing. Yes, I just check it and found that there is lot of empty translation. I will have to push like on 1.8.1 version update.
You can download the language folder for catch box http://catchthemes.com/downloads/catchbox-languages.zip
Sakin
KeymasterHi Jason,
There is problem with your Custom Menu while you added the Home menu. For adding home menu in Custom menu.
Go to “Appearance -> Menus”. Then click on View All in Pages. Then Check the Home:Home and click on Add to Menu. Then delete your old manual home you added. Then click on save will solve your issue.It should look like this http://catchthemes.com/demo/simplecatch-pro/
Regards,
SakinSakin
Keymaster@paigeohliger : There is padding you can decrease that
.entry-header { padding-bottom: 20px; }
Sakin
KeymasterHi Zonal,
Please remove this from “Custom CSS” and it will work
#add_image_size( 'featured', 50, 50, true); // uses on homepage featured image
You are supposed to add only css in “Custom CSS” box not the WordPress Functions.
Regards,
SakinSakin
Keymaster@paigeohliger: Yes there was few problem in update notice in Catch Mustang. In this version we have fixed.
- Redesign Theme Options Panel to make it standard
- Fixed data-validation for Theme Options datas
- Fixed the update notifier
If you are using FTP to update then you can just upload the unzip copy and then replace the existing files.
But if you want to use through WordPress Admin Panel. Then you need to first activate any other theme and then delete the existing Catch Mustang theme and then add the latest zip copy as new theme installation.
Sakin
KeymasterHello Darek,
The text ““czyli jak przetrwać pierwszy rok życia dziecka !” is not h2. It’s your site description. For that add the following css:
#site-description { font-size: 16px; }
Regards,
SakinSakin
KeymasterHi Jason,
Thanks I will take a not and will try to add in. We have already started to add in in our Catch Box Theme.
But for now you can use “Custom CSS” box and add the custom css for h1, h2, etc tags.
Regards,
SakinSakin
Keymaster@unster: Simple Catch Theme doesn’t support this. If you want to customize then you should do it by building child theme and code it. But it take a lot of time to do that and this theme is not designed to do that. Why don’t you try our other theme Catch Box http://wordpress.org/extend/themes/catch-box which has this option.
Sakin
Keymaster@paigeohliger: Just add the following css in “Custom CSS” box in your Theme Options Panel.
.entry-meta { display: none; }
Sakin
Keymaster@golfer300 : See the Theme Instruction http://catchthemes.com/theme-instructions/catch-box/ . The best size for featured slider is 644px width by 320px height.
For adding bold Home above the Featured slider. This is bit complicated. You need to first build a child theme and then copy header.php and just add this in line no 97:
<span style="font-size: 20px; display: block; font-weight: bold; padding-bottom: 10px;">Home</span>
Sakin
KeymasterHi Jens,
It is design like that to not to distract visitor when browsing from small devices. But if you want to make it visible. Then you can add the following CSS in “Custom CSS” box in your Theme Options panel.
@media screen and (max-width: 767px) {
#branding #access-secondary,
#branding #access-secondary ul.menu {
display: block;
margin: 0;
}
}Regards,
Sakin -
AuthorPosts