Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@Sheryl: You don’t need to add all that css. So, remove that css and add the following css. In the following css you can change the font size as per your need. Right now, I have made it as 16px.
#secondary .widget { font-size: 16px; }Sakin
Keymaster@Keir: You have block source of your site to read feed. So, check your plugin for this issue. It’s not theme issue.
Sakin
Keymaster@bigoslesli: It should work fine. Maybe you missed one of the steps mentioned in theme instructions pro http://catchthemes.com/theme-instructions/catch-kathmandu-pro/#updating.
First make sure that you have active Catch Updater plugin http://catchthemes.com/wp-plugins/catch-updater/ and then download theme zip file from your account at http://catchthemes.com/my-account and upload it from “Appearance => Themes => Add New => Uploads”.
Sakin
Keymaster@Haydie: For plugin support, we recommend you to use plugin support forum. For WMPL plugin it’s https://wpml.org/forums/forum/english-support/
As per my knowledge, it should be string translation and it’s documented in https://wpml.org/documentation/getting-started-guide/string-translation/
Sakin
Keymaster@knudkp: Yes, it would have been better if there was easy update like WordPress.org theme and plugins. But our settings is not matching with it. We will try to add that update soon.
Yes, there is theme instructions for update. You can note this http://catchthemes.com/theme-instructions/catch-base-pro/#updating
Sakin
Keymaster@mydreamin: There is nothing to worry about updating Catch Base free theme. All your settings, custom css and content will be safe. You don’t need to use Child theme unless you are doing advance customization like adding/editing functions.
Note: Don’t edit/add any files inside ‘catch-base’ theme directory. As when you update the theme, all the files inside ‘catch-base’ theme directory will be reverted back to original.
August 23, 2015 at 10:20 am in reply to: Big problem: Site is live now, but I cannot do anything under "Customize" #64954Sakin
Keymaster@margarita: Thanks for posting solution. I head would have been spinning round to find the solution. Thanks a lot 🙂
Sakin
Keymaster@hannahxmperformance-com: I see that you are using old version of Catch Adaptive. So, first update to latest version. Then you can edit the padding-top and padding-bottom in the following css and then add it in “Appearance => Customize => Theme Options => Custom CSS Options” box:
@media screen and (min-width: 768px) { #masthead .wrapper { padding-bottom: 70px; padding-top: 70px; } }Sakin
Keymaster@marcodimi: I see that you are trying to update Catch Box Pro theme. For that you first you need to download theme zip file from your account at http://catchthemes.com/my-account. Then you can either upload it from FTP or from WordPress administration panel. For that, you can check out theme instructions page at http://catchthemes.com/theme-instructions/catch-box-pro/#updating
Sakin
Keymaster@Barb: You can add the following css in “Appearance => Theme Options => Custom CSS” box:
#branding ul.menu a { color: #3e6107; }Sakin
Keymaster@Ouss1984: Yes, you are right.
When I check in your site. I don’t see feature page content. So, I need to check in your server as it’s working fine in our site.
I will email you and then please reply me there.Sakin
Keymaster@Patrick: It’s mentioned in theme instructions page at http://catchthemes.com/theme-instructions/catch-responsive-pro/#updating
Sakin
Keymaster@Lizi: If you have downloaded child theme from that link then responsive css will be enqueued from your child theme functions.php file.
Sakin
Keymaster@tobman: Now sure which CSS @HallMarc used. But when I check in our demo site at http://catchthemes.com/demo/full-frame/, the mobile menu is working fine.
Maybe post in your site URL and let me know which device you are checking in from.
Sakin
Keymaster@m3evm: That header image size depend on the content it has on. If you have Site title, tagline and logo then you will see more of it. So, now you need to adjust the height as per your need by adding css in “Appearance => Customize => Theme Options => Custom CSS Options” box. You can see the following css where I have fixed minimum height for large screen and small screen. You can change as per your need.
/* Large screen above 991px */ @media screen and (min-width: 991px) { #masthead { min-height: 650px; } } /* Small screen below 991px */ @media screen and (max-width: 990px) { #masthead { min-height: 500px; } }Sakin
Keymaster@Kim: Sorry not sure about it. You need to check for plugin to do this. Theme are not allowed to change default post navigation.
Sakin
Keymaster@pjbovee:
1. For detail support, please post in your site URL so that I can check in and send you custom css. For now, you can try adding the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box. In the following css, you can increase or decrease padding as per your need.@media screen and (min-width: 991px) { #masthead { padding: 200px 0; } }2. Yes, you can add social icon to your widget area from “Appearance => Widgets” and the drag and drop “CT: Social Icons” widget to your sidebar.
Sakin
Keymaster@Joachim: Thanks and for others update instructions is mentioned in theme instructions page at http://catchthemes.com/theme-instructions/catch-responsive-pro/#updating
August 21, 2015 at 11:27 am in reply to: How to change the margins(?) between the content and sidebar #64765Sakin
Keymaster@Chatfield Court: I see that you have customize the site width without checking in responsive css.
I don’t get it why you have following css in you child theme style.css. This is causing issues. So, I suggest you to remove that.#page { margin: 0 auto 2em; max-width: 1200px; } #secondary { float: right; margin-right: 3%; width: 20.5%; } #content { margin: 0 28.6% 0 3%; width: 75.5%; }I think you want to increase the the width of the site. For, that you need to need to adjust the width in the following css as per your need and then add it in you child them style.css
@media screen and (min-width: 1025px) { /* Overall Site Width */ .site { max-width: 1200px; width: 100%; } /* Content Width */ #primary { width: 68%; } /* Sidbear Width */ #secondary { margin: 0; width: 30%; } } -
AuthorPosts
