Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@Keir: Thanks for your appreciation.
Sakin
Keymaster@netmairie: Sorry we don’t have that option in Free theme. We didn’t added that as we provide free theme and free support and I think it’s good to keep that attribution for our effort.
There is easy option in pro version. You can simply go to “Appearance => Customize => Theme Options => Custom CSS” options box and edit it.
Sakin
Keymaster@bigsmall444: Sorry there is no trail of Pro. We only have Free and Pro versions. But you can contact to sales and ask for more info at http://catchthemes.com/contact-us/
Sakin
Keymaster@Emi: Please post in your site URL and explain. If you are trying to change font size in Aside post format entry content, then you need to change the font in the following csss and then add it in “Appearance => Theme Options => Custom CSS Options” box:
.format-aside .entry-content { font-size: 15px; }Sakin
Keymaster@Debbie: Which button, you want to change. please post in your site URL and let me know which button are you trying to change.
Sakin
Keymaster@bigsmall444: If you want image on top with one column then you need to upgrade to Pro and then select “Show Excerpt (Image Top)” from “Appearance => Customize => Theme Options => Layout Options => Archive Content Layout”. In Catch Adaptive Pro theme, you will get following layout options:
- Columns Layout (Image Top)
- Show Excerpt (Image Left)
- Show Excerpt (Image Right)
- Show Excerpt (Image Top)
- Show Full Content (No Featured Image)
In Catch Adaptive Free theme, you can change layout from “Appearance => Customize => Theme Options => Layout Options => Archive Content Layout”. There you can choose “Show Excerpt (Image Left)” and then Save & Publish it.
Sakin
Keymaster@It_was: Disqus plugin has problem with many theme. You can read more about it at https://help.disqus.com/customer/portal/articles/472005-wordpress-troubleshooting. So, better try alternative plugin like, Jetpack plugin, comment module.
Sakin
Keymaster@webtussi: How do I check in when you site is in maintenance mode. Your site needs to be live to check in.
Sakin
Keymaster@Kenta: You can change the line height in the following css:
#primary { line-height: 1.65; }Sakin
Keymaster@dbosworthstmtoolbox-org: You can add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:
.page-id-1456 #masthead, .page-id-1456 .nav-primary { display: none; }Sakin
Keymaster@Gregory: I see that you have added in the following CSS in Custom CSS box, which makes it solid color.
#branding #access, #colophon #access-footer { background: none #205e1d; }Remove that.
Sakin
Keymaster@Emanuel: Maybe you want to ask in that plugin support. It’s not theme issue.
Sakin
Keymaster@birdpuk: There are two methods to update your theme A) From WordPress Dashboard and B) From FTP. You can read more about it from theme instructions at http://catchthemes.com/theme-instructions/catch-adaptive-pro/#updating
A) From WordPress Dashboard:
1. First you need to download “Catch Updater” plugin from http://catchthemes.com/wp-plugins/catch-updater/.
2. Install and activate “Catch Updater” plugin from “Plugins => Add New => Uploads”
2. Download the latest zip file from your account at http://catchthemes.com/my-account
3. Finally upload the downloaded zip file from “Appearance => Themes => Add New => Uploads”B) From FTP:
1. Download the latest zip file from your account at http://catchthemes.com/my-account
2. Unzip/Extract that zip file
3. Using an FTP client to access your host web server, go to /wp-content/themes/ and upload your new copy of Catch Adaptive Pro Theme which shall replace the old filesSakin
Keymaster@Kim: Check the steps that you have missed:
1. First you need to install and activate “Catch Updater” from “Plugins => Add New => Uploads”
2. You need to download the latest zip file from your account at http://catchthemes.com/my-account
3. You can upload the downloaded zip file from “Appearance => Themes => Add New => Uploads”Sakin
Keymaster@Emanuel: Looks like there is two favicon loaded in your site. But I cannot check in your site as you have disable right click on your site. So, I cannot view source of your site. Can you disable that for now and then I can debug it.
Sakin
Keymaster@Kenta: If you just want to make small changes, then you can add your responsive style in “Appearance => Theme Options => Custom CSS” box. But if you want to totally change
responsive.cssthen you need to dequeue parent style and add you child file.So, if you want to edit it from your child theme then first, you need to create
responsive.cssandfunctions.phpfile in your child theme. If you download sample child theme from http://catchthemes.com/blog/create-child-theme-wordpress/, then you will get this. You just need to addresponsive.cssfile.Then, you need to add the following code in your
functions.phpfile in your child theme// Remove Parent theme responsive.css and adding new responsive.css in child theme function adventurous_child_enqueue_scripts() { wp_dequeue_style( 'adventurous-responsive' ); wp_enqueue_style( 'adventurous-child-responsive', get_stylesheet_directory_uri() . '/responsive.css' ); } add_action( 'wp_enqueue_scripts', 'adventurous_child_enqueue_scripts', 11 ); -
AuthorPosts
