Forum Replies Created
-
AuthorPosts
-
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%; } }Sakin
Keymaster@Jeff:
1. Fixed header height changes, if you change the height of menu items or logo or icon as it is wrapped by menu wrapper. We called that as Fixed header top menu. But if you like to manually increase the height, then you can adjust the height in the following css as per your need and then add it in “Appearance => Customize => Theme Options => Custom CSS Options” box:
.nav-primary { height: 50px; }2. To change the number of Featured Content. You need to go to “Appearance => Customize => Featured Content => Featured Content Options => No of Featured Content” and change the number and click on “Save & Publish”, then you need to refresh your browser or close the customizer and reopen it again as that customizer need to be refreshed. Then you will see the number has been changed.
Sakin
Keymaster@Alexis: Thanks for your appreciation. Yes, the post widget adds in link only in title and more text of the post. As it’s not good to add link in whole content. But if you have featured image in that post then that featured image will also be link to post. For featured image check this http://catchthemes.com/blog/videos-blog/video-series-adding-featured-image-wordpress-postpage/
Sakin
KeymasterLooks like you are talking about blockquote background. In pro version there are color options for various elements but nor for HTML tag like bloxkquote. For that you can edit the color code in the following css as per your need and then add it in “Appearance => Customize => Theme Options => Custom CSS” box:
#content blockquote { background-color: #000; color: #fff; }Sakin
Keymaster@Panayot: Thanks for the theme check but that is only for free theme. Also you have fixed most of it in our latest version. We follow guideline properly and many comes new.
1. screen-reader-text class has been added which is only useful for accessibility
2. missing text domain has been fixed which is only useful for translation
3. Screenshot size is just recommendation and we are using recommended size 880Ă—660
4. Now, there is only one text domain use. This is just info for translation. Theme should generally use only one text domainSakin
Keymaster@Florence: For detail customization like this, you need to post in your site URL so that I can check in and suggest you css.
1. That page take the category title followed by Category Archives: . So, if you want to edit the title then edit the category name. But if you want to edit “Category Archives:” then you need to build child theme. For child theme, refer to http://catchthemes.com/blog/create-child-theme-wordpress/ and then copy archive.php file to your child theme and edit that.
To remove the border in that title, you can add the following css in “Appearance => Theme Options => Custom CSS” box:
.page-header { border: none; }2. Archive and search are the default widget if there is no widget in the sidebar. So, go to “Appearance => Widgets” and drag and drop widgets as per your need in your sidebar which will replace the default widgets.
3. Sorry I don’t get it what you mean. Title of the post is always above the content of the post.
4. To hide entry meta, you can add the following css in “Appearance => Theme Options => Custom CSS” box:
.entry-meta { display: none; } -
AuthorPosts
