Forum Replies Created
-
AuthorPosts
-
Pratik
ParticipantHi @pedrokraft,
To remove the links, you need to use Featured Image Slider instead of the Featured Page/Post/Category Slider. This is a custom slider. You can add only images title and content.Its details are here: https://catchthemes.com/theme-instructions/catch-responsive-pro/#enable-featured-image-slider
Let me know if this works or not.
Regards,
PratikPratik
ParticipantHi @zerocuul,
Creating child theme and editing the css is not very difficult. Just refer to this post: http://catchthemes.com/blog/create-child-theme-wordpress/2. Can you check and use this code instead:
.sidr #header-left-nav .sub-menu { background-color: #CD0000; }
Let me know if this works or not.
Regards,
PratikPratik
ParticipantHi @krizgriz,
No problem as long as the issue is taken care of 😀
If you liked our theme and support, please leave us your valuable review at https://wordpress.org/support/view/theme-reviews/catch-evolution.
Regards,
PratikPratik
ParticipantHi Taylor,
I have emailed you regarding this post. Please check your spam folder if the email is not received.
Regards,
PratikPratik
ParticipantHi @John,
This is not possible currently with our themes. To achieve that, you will need to make adjustments to the javascript code and maybe some css as well by removing our code. You will need to hire a customizer for that.
Regards,
PratikPratik
ParticipantHi @brianmor,
1. The featured image and Read More tag both correctly link to the specified page, however I’d like the page title to be linked too (this is how the Featured Page widget works).
If you want the title to be linked to the page too, then you need to do a bit of customization via child theme. For this, please add a child theme for your current theme. It’s details are here: http://catchthemes.com/blog/create-child-theme-wordpress/
Then, in the child theme’s functions.php file, add the code here: http://pastebin.com/AB9FrS52
2. We can eliminate excerpt showing and only show full content. Then allow “Read More” tag in that to cut off the content. I have made the modification in above code. Just use it and it will solve this problem as well.
Make sure you go to your “Appearance=> Customize” page once you make the changes. This is because the cache is stored and going to that page will flush all caches for featured content.
Let me know if this works or not.
Regards,
PratikPratik
ParticipantHi @michelled,
Look like you are using Clean Box Free version.
First thing, There is a html error when you have made modifications.
<div class="archive-post-wrap" ;="">
below.entry-header
class. check;=""
, there might be some php code output error.* In current situation, you can add following CSS code in Appearance=> Customizer=> Theme Options=> Custom CSS box to make image float left:
#main article .featured-image { float: left; }
This will float the image but horizontal line at the bottom will also pop up. I will not recommend this.
* If you revert to to theme default, you can add following CSS to make the image float to left:
.has-post-thumbnail .featured-image { width: 290px; } .has-post-thumbnail .entry-container { width: 488px; } .has-post-thumbnail .featured-image, .has-post-thumbnail .entry-container { display: inline; float: left; }
This will not work on all devices though as you will need to edit the responsive CSS for all other devices as well.
The best option will be to Upgrade to Pro. It has inbuilt option to Show Excerpt with Image in left or Right with all responsive CSS done. Upgrading to Pro has more features as well, described here.
Let me know how it works out.
Regards,
PratikPratik
ParticipantHi @pedrokraft,
we can do the same thing for this search bar in header right as well. You can add following CSS code in Appearance=> Customize=> Theme Options => Custom CSS box:#header-right-search { display: none; }
For colors, you can upgrade to pro version. There is option to change colors of menu.
Regards,
PratikPratik
ParticipantHi @krizgriz,
Update on the issue:
If seems I was wrong on previous post and I apologize for it.The problem is when the image size is less than 1600px width, it takes featured header image rather than featured image. So, just add an image bigger than 1600px as featured image and it will work.
Regards,
PratikPratik
ParticipantHi @Shop43,
A. For shadow effect, use following CSS code and remove the previous codes(otherwise both border and shadow will appear).
#content { overflow: visible; } /* For primary main box shadow in each article */ #primary article { box-shadow: 10px 10px 5px #888888; } /* For secondary sidebar box shadow in widget */ #secondary .widget { border: none; /* Remove border. Remove this line if you want border-bottom */ box-shadow: 10px 10px 5px #888888; }
I do not think you will want this but if you do, the following code will add border around all widgets in #secondary sidebar:
#secondary .widget { border-color: #c2c2c2; border-radius: 5px; border-style: solid; border-width: 2px; }
B. It looks like you have edited CSS and set the width to be 86% for header top sidebar. A few things to note here:
1. Never edit core theme files like style.css. You will lose all edits when you update the theme.
2. If you want customization, consider using child theme and adding your custom codes there. Details for child theme is here: http://catchthemes.com/blog/create-child-theme-wordpress/
3. Because of the width defined, It is not possible to add a border as border on left in way to the left of the div outside. However, we will be able to add border to image. For that use following code:#sidebar-header-top .widget.widget_widget_catchbox_adwidget { border-color: #c2c2c2; border-radius: 5px; border-style: solid; border-width: 2px; }
Again, if you want box shadow here too instead of border, use following code instead:
#sidebar-header-top .widget.widget_widget_catchbox_adwidget { box-shadow: 10px 10px 5px #888888; }
Let me know if I explained everything properly. Please let me know if I missed anything or misunderstood anything.
Regards,
PratikPratik
ParticipantHi @hollyen,
You can have anything you want there but you need to do a bit of customization for that. First, create a child theme. Details for creating a child theme is here.
Then in the child theme’s functions.php, add function posted here: http://pastebin.com/WNFepRRW
Then in there you can edit line 28 to 34 to add any effect you want using html, css and even php.
If you are not familiar with customization, please hire a customizer.
Regards,
PratikPratik
ParticipantAlso please post in this support link: https://catchthemes.com/support-forum/topic/add-a-background-image/
Pratik
ParticipantHi @Randal,
Great you solved it. Let me know if there are any other issues.
Regards,
PratikPratik
ParticipantHi @pedrokraft,
To edit footer content, you will need to upgrade to pro version. Check out the theme here and its details here.
To disable search completely, you will need to upgrade to pro version too. But, you can hide the search using Custom CSS. It will be there but will be hidden. To achieve it, you can add following CSS code in Appearance=> Customize=> Theme Options => Custom CSS box:
#search-toggle { display: none; }
If this does not work, please post in your site url.
Regards,
PratikPratik
ParticipantMarch 22, 2016 at 8:37 pm in reply to: Different Excerpt Settings for Category Archives and Main Blog Posts #87968Pratik
ParticipantHi @Michael,
What you have mentioned is possible but it will be a bit difficult. It involves using a child theme and making a bit of customization. If you are comfortable with it let me know and I will give you instructions on how to do so.
Regards,
PratikPratik
ParticipantHi @krizgriz,
This is a strange issue. The Featured Images should not have disappeared.
Can you let me know from where you changed the settings to show featured image as header image? Because I do not think this option existed in Catch Evolution Free version. It is only available in Catch Evolution Pro version. Have you by any chance downgraded from pro to free version?
Regards,
PratikPratik
ParticipantPratik
ParticipantHi @Eva,
I will need the page link where you want table border to be removed. Can you provide that?
Regards,
Pratik -
AuthorPosts