Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@Bruce: ok then replace previous css with the following:
body.blog, body.archive { background-color: #8bc8fc; } .blog #primary .post, .archive #primary .post { background-color: #77aad5; border: 1px solid #3a79ae; padding: 10px; }August 15, 2015 at 10:13 pm in reply to: Featured image uploaded but not appearing on post page #63875Sakin
Keymaster@Bruce: This is bit complicated, so I recommend you to hire customizer to do it. You can either build child theme and add css like below in your child theme style.css. For child them refer to http://catchthemes.com/blog/create-child-theme-wordpress/ or can add it in “Appearance => Theme Options => Custom CSS” box:. In the following css, you cna change the color code and elements as per your need.
body.blog, body.archive { background-color: #8bc8fc; } .blog #main, .archive #main { background-color: #77aad5; border: 1px solid #3a79ae; padding-left: 20px; padding-right: 20px; }Sakin
Keymaster@Bruce: You shouldn’t edit any core theme files like style.css, functions.php, index.php and so in. All the files inside ‘simple-catch-pro’ directory should be remained unchained. If you want to add additional css, then you can build child theme and add in. For child theme, refer to http://catchthemes.com/blog/create-child-theme-wordpress/ or you can add your custom css in “Appearance => Theme Options => Custom CSS” box.
Now, to revert back the original css. You can download Simple Catch Pro theme from your account at http://catchthemes.com/my-account and then unzip it. Then option style.css, copy the css and then paste it in that style.css that you have open it from “Appearance => Editor”.
August 15, 2015 at 8:33 am in reply to: Override sitewide default layout for Blog posts only? #63856Sakin
Keymaster@heather: due to log of conditions there is no such easy way to do it. The best option will be to Set Default with sidebar. As there is more posts then pages. Then you can go to pages and edit it option to set as No Sidebar.
If you really want to do it from child theme then copy sidebar.php file to your child theme and then replace the following code:
// WooCommerce Shop Page excluding Cart and checkout if ( class_exists( 'woocommerce' ) && is_woocommerce() ) {with
if ( is_single() ) { $layout = 'right-sidebar'; $sidebaroptions = 'right-sidebar'; } // WooCommerce Shop Page excluding Cart and checkout elseif ( class_exists( 'woocommerce' ) && is_woocommerce() ) {Then copy the function fullframe_body_classes() to your child theme functions.php file and then edit the following code:
// WooCommerce Shop Page if ( class_exists( 'woocommerce' ) && is_woocommerce() ) {with
if ( is_single() ) { $layout = 'right-sidebar'; } // WooCommerce Shop Page elseif ( class_exists( 'woocommerce' ) && is_woocommerce() ) {Sakin
Keymaster@Daniel: For that you need to disable responsive design. Just go to “Appearance => Theme Options => Responsive Design”, check in “Disable Responsive Design” and save changes.
August 15, 2015 at 7:58 am in reply to: Featured image uploaded but not appearing on post page #63852Sakin
Keymaster@Patrick: This is your blog page http://bible-stories-library.com/my-blog/. Now, you need to add featured image in posts like
http://bible-stories-library.com/2015/08/language-of-love-does-god-really-love-us/
http://bible-stories-library.com/2015/08/language-of-love-is-god-really-in-control/
http://bible-stories-library.com/2015/08/language-of-love-why-does-god-allow-bad-things/and so on.
I guess, you have just inserted image in those posts. But haven’t added in Featured Image. As it’s working here. If you have done all these and still not working then I will email you to check in your server.
Sakin
Keymaster@Harry: Ok for that you need to replace the previous code with the following:
function catchresponsive_featured_slider() { if ( is_front_page() ) : ?> <section id="feature-slider"> <div class="wrapper hentry"> Add in Video here </div><!-- .wrapper --> </section><!-- #feature-slider --> <?php endif; }Then add the following css in your child theme style.css
#feature-slider .hentry { margin: 0; }August 15, 2015 at 2:02 am in reply to: Featured image uploaded but not appearing on post page #63840Sakin
Keymaster@Patrick: No, you need to add in Featured Image for all those posts for which you want to show image. Just edit individual posts and add in Featured image.
Sakin
Keymaster@Dhuan: All those detail color options are there only Pro version.
1. For slider text, you can change the color code in the following css and then add it in “Appearance => Theme Options => Custom CSS” box:
#slider-wrap .featured-text { color: #fff; }2 and 3. These blocks are widget in Primary Sidebar. For that, you can just go to “Appearance => Widgets”. If you like to add image then you might want to drag and drop “Adspace Widget” to your sidebar and add images.
4. The three boxes in footer are widgets in “Footer Area One”, “Footer Area Two” and “Footer Area Three” . For this also, you need to go to “Appearance => Widgets” and add in widget to these areas.
August 15, 2015 at 1:04 am in reply to: Featured image uploaded but not appearing on post page #63836Sakin
Keymaster@Patrick: Ok if you are sure that you have added in Featured image in all those posts. Then can you go to “Appearance => Customize => Theme Options => Layout Options => Archive Content Layout” and check in your settings.
If this also doesn’t work then I need to check in your sever. Let me know it and then I will email you personally.
August 15, 2015 at 12:46 am in reply to: Featured image uploaded but not appearing on post page #63834Sakin
Keymaster@Patrick: Please post in your site URL and then I can check in. Are you sure you have added in Featured image in your post. See this for adding featured image in your posts
http://catchthemes.com/blog/videos-blog/video-series-adding-featured-image-wordpress-postpage/Sakin
Keymaster@Cybersnaby: Thanks for your appreciation and if you like Catch Base theme and it’s support, then please support it by providing your valuable review at
https://wordpress.org/support/view/theme-reviews/catch-base?rate=5#postformThanks 🙂
Sakin
Keymaster@Harry: Post in your site URL and let me know what’s not working. Also post in your code. Are you using Static Page in homepage, then it will be as below:
function catchresponsive_featured_slider() { if ( is_front_page() ) : ?> <section id="feature-slider"> <div class="wrapper"> Add in Video here </div><!-- .wrapper --> </section><!-- #feature-slider --> <?php endif; }Sakin
Keymaster@Cybersnaby: There is two option for that. First one it upload large image and user css to make it small as retina uses double pixels. So, for example if you want to display logo to 300px by 200px then you need to upload 600px by 400px and then scale with css using low width and css as below:
#site-logo img { width: 300px; height: 200px; }Another technique is just upload SVG Image for logo.
Sakin
Keymaster@Patrick: Can you go to “Settings => Readings” and make sure you have select “Your latest posts” in Front page displays.
Then if it doesn’t come then go to “Appearance => Customize => Theme Options => Homepage/Frontpage Options” and either un-select all the cateogries or select specific category which you want to display and then save changes.
Sakin
Keymaster@Paul: For that you need to edit all the menu items there and check in option “Open Link in New Window/Tab. Check this screenshot https://www.pinterest.com/pin/548594798330834738/
Sakin
Keymaster@Dhuan: You can add the following css in “Appearance => Theme Options => Custom CSS” box:
#branding ul.menu a { font-weight: bold; }Sakin
Keymaster@Harry: For that you need to replace previous code with the following code:
function catchresponsive_featured_slider() { if ( is_home() ) : ?> <section id="feature-slider"> <div class="wrapper"> Add in Video here </div><!-- .wrapper --> </section><!-- #feature-slider --> <?php endif; } -
AuthorPosts
