Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@Els: You just need to upload the larger image and set it as featured image http://catchthemes.com/blog/videos-blog/video-series-adding-featured-image-wordpress-postpage/ . If you upload the larger image then it will automatically crop it. But if you upload smaller then it will load original image. In your case you have upload smaller image so it’s loading the image that you have uploaded. After you add new featured image, you need to change any value in theme options panel to clear the cache, otherwise it will take 24 hours to clear the cache automatically.
Sakin
Keymaster@Jean-Paul: You can just change the width for large screen sizes. Following is the CSS for various screen sizes. You can change the width of Primary and Secondary as per your need. Right Sidebar is Secondary and Content is Primary. So, if you decrease the secondary by 10px then you should increase the primary by 10px. Then after editing, you can add the css in “Appearance => Theme Options => Custom CSS” box:
/* For Screen Size above 941px */ @media screen and (min-width: 941px) { .two-columns #primary { width: 540px; } .two-columns #secondary { width: 340px; } } /* For Screen Size above 1001px */ @media screen and (min-width: 1001px) { .two-columns #primary { width: 600px; } .two-columns #secondary { width: 340px; } } /* For Screen Size above 1101px */ @media screen and (min-width: 1101px) { .two-columns #primary { width: 680px; } .two-columns #secondary { width: 340px; } } /* For Screen Size above 1153px */ @media screen and (min-width: 1153px) { .two-columns #primary { width: 740px; } .two-columns #secondary { width: 340px; } } /* For Screen Size above 1281px */ @media screen and (min-width: 1281px ) { .two-columns #primary { width: 750px; } .two-columns #secondary { width: 400px; } }Sakin
Keymaster@fabger: You are try adding image to the Header Right Sidebar from “Appearance => Widgets”. You can use drag and drop “1. Catch Evolution Adspace Widget” widget to the Header Right Sidebar and add in the image.
Sakin
Keymaster@fangoch: Yes, we have found that issue in Catch Base Free version and have submitted the update to WordPress.org. Now, the theme review team will review it and will push it live soon.
Sakin
Keymaster@talkleft: I check in our server with Jetpack and I don’t see any issue with the sidebar. Maybe you have some Jetpack module which is not working fine. Can you activate and show me the issue so that I can check in.
January 20, 2015 at 8:11 pm in reply to: Responsive theme feature not adjusting pages correctly on mobiles. #50253Sakin
Keymaster@jamepompey: Theme is responsive but the your table in homepage is not responsive. It has lot of columns in table so it doesn’t fit. Can you try using Responsive Table plugin or responsive columns plugin and add in.
Same with your product page, where your details has fixed width of 525px. So, it’s issue. That can be fixed by adding in max-width css. Just add the following css in “Appearance => Theme Options => Custom CSS”
.single-product .product_info { max-width: 100%; }Sakin
Keymaster@Navdit: Which theme are you using it? It depends on the theme that you are using. There must be Header and Footer Code Box, where you can insert scripts. You can also check out theme instruction page http://catchthemes.com/theme-instructions/.
If you want these script to be manage using plugin then you can use our plugin http://catchthemes.com/wp-plugins/catch-web-tools/
Sakin
Keymaster@reefadmin: Where are you trying to add bullet point?
Sakin
Keymaster@TBM: There won’t me more tag on pages. You can split content on pages using Next Page pagination code
<!--nextpage-->. Read this http://en.support.wordpress.com/splitting-content/nextpage/Sakin
Keymaster@TBM: Not sure about this. You might want to search for plugin or javascript to do this. It’s not possible just by css.
Sakin
Keymaster@Navdit: Sorry, but removing the footer credit option is only there in Pro version where you will get Footer Editor option in your theme options panel. For more additional features in Pro version, check out http://catchthemes.com/theme-instructions/catch-box-pro/
Sakin
Keymaster@Epheistos: Then add in the second part as well.
Sakin
Keymaster@Navdit: I have tested in and it’s working fine in my side. Ok I will contact you so that I can check in your server.
Sakin
Keymaster@Navdit: Can you post it in you site URL so that I can see what’s happening. Did you check in this tutorial about menu at http://catchthemes.com/blog/custom-menus-wordpress-themes/
As when you create custom menu, there you can add or remove menu items as per your need.
Sakin
Keymaster@Wade: Sorry you question is not so clear. Do you have any screenshot on how you want to add in.
As you can easily add images from Add Images in your page/post. You can check this http://en.support.wordpress.com/images/ and if you want it like the gallery, then you can install JetPack plugin and activate ‘Tiled Galleries’.
Sakin
Keymaster@mereed: These option are there in Pro version. You can choose Featured Page Slider or Post Slider or Category Slider. Or even you can add in your own custom image slider where you can add image, title, link, content all as per your need. For more details about pro version, check out theme instructions page at http://catchthemes.com/theme-instructions/catch-base-pro/
Sakin
Keymaster@Casper: There are lot of Breadcrumb plugin in WordPress.org and we have already added support for the popular one that is “Breadcrumb NavXT” plugin. Just install that and it will start working.
But if you want to use Yoast breadcrumb plugin then you need to build child theme, you can ready about child theme and download sample child theme from http://catchthemes.com/blog/create-child-theme-wordpress/ and then add the following code in your child theme functions.php file
function adventurous_breadcrumb_display() { if ( function_exists('yoast_breadcrumb') ) { yoast_breadcrumb('<div class="breadcrumb container">','</div>'); } } -
AuthorPosts
