Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@seatoskylifestyle: I don’t get it what you mean. All your post will be display as Latest Post first. So, I am confused. Maybe you can explain in reference with your site URL.
Sakin
Keymaster@jpbertram: You can try adding in the following CSS in “Appearance => Theme Options => Custom CSS” box.
#main-slider .entry-container { display: none; } #main-slider .slides:hover .entry-container { display: block; }Sakin
Keymaster@prius4f: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box.
#branding ul.menu { font-size: 14px; }Sakin
Keymaster@marcella: Yes best way to add Custom CSS is either adding it in “Appearance => Theme Options => Custom CSS” box or by building child theme.
For your slider box, I see that you have added following CSS in “Custom CSS” box as well as in edit CSS under Appearance. So, it is having box. Please remove those css.
#main-slider .entry-title a { background: none repeat scroll 0 0 rgba(255, 255, 255, 0.7); display: block; padding: 1rem 2.5rem; }Sakin
Keymaster@Mgx: You will find
catchevolution_sliders()function in catchevolution-functions.php file inside inc directory of Catch Evolution theme.Sakin
Keymaster@Otton: Please remove
margin: 0;from your custom css in the css below..page-id-474 #page { margin: 0; max-width: 1000px; }Then you can add the following CSS
/* Remove the padding in main */ #main { padding: 0; } /* Remove Margin from Content */ .singular #content, .fullwidth #content, .sidebar-content.singular #content { margin: 0; }Sakin
Keymaster@regenesys: Check out the footer.php file at http://themes.svn.wordpress.org/catch-box/2.9/footer.php . I see that you have removed the action
catchbox_site_generatorwhich is required to get in social icons.Sakin
Keymaster@blackkeys: Ok so what you need to do now?
Sakin
Keymaster@OBO Bettermann: I don’t think it will effect. For SEO, we recommend using WordPress SEO by Yoast Plugin.
Sakin
Keymaster@Canexas: Please check in our Theme Instruction page for detail theme instruction page at http://catchthemes.com/theme-instructions/catch-evolution-pro/
Sakin
Keymaster@OBO Bettermann: You can add header image from “Appearance => Header”.
Sakin
Keymaster@Otton: You have already customize the site and it looks so different. Can you remove that custom CSS and then I can send you the custom css to change that.
Sakin
Keymaster@regenesys: Thanks I love the way you have use Catch Box Theme in your site. It’s the best customization and nice to see that you have build child theme. But I am suprise to see that you have removed the “Theme: Catch Box” from the footer. Please add that back as this is the only mean though which we provide Free Theme and Free Support. If you want to remove that from Footer then please consider using Catch Box Pro version where you have Footer Editor in Theme Options panel to remove that.
I don’t know how you have customize the footer in your child theme. As when you add social links in “Appearance => Theme Options => Social Links”, it automatically add social icons in the footer. Please check in your edits in Footer.
Sakin
Keymaster@BenniemanZA: I see that you site is sill user construction so I couldn’t check in. I you are using Catch Everest Pro theme then you can change the color easily from “Appearance => Theme Options => Color Options” where you have color picker and can change any color you want.
If you are using Free Version of Catch Everest Theme, then you can change the color of them text in the menu bar by changing the color code in following CSS and adding it in “Appearance => Theme Options => Custom CSS” box.
#header-menu ul.menu a { color: #eee; }Sakin
Keymaster@Ser_DNA: That means you haven’t added Featured Images on those post. So, just add featured images on those post. See here on how to add featured image http://en.support.wordpress.com/featured-images/#setting-a-featured-image
Sakin
Keymaster@adasprom: Yes, you need to disable the responsive design. Maybe you can wrap your widget with div code like this.
<div style="max-width: 570px">Your Widget Code</div>Sakin
Keymaster@blackkeys: It’s because of the following CSS that you have added in your Custom CSS box.
#hgroup-wrap { padding-top: 10px; } #hgroup-wrap { padding-bottom: 10px; } #hgroup-wrap { padding-left: 170px; } #hgroup-wrap { padding-right: 10px; }If you want that padding to be only in big screen then you need to add like below:
@media screen and (min-width: 961px) { #hgroup-wrap { padding-top: 10px; } #hgroup-wrap { padding-bottom: 10px; } #hgroup-wrap { padding-left: 170px; } #hgroup-wrap { padding-right: 10px; } }And then for widget in Mobile devices it will be as below:
@media screen and (max-width: 768px) { .header-sidebar { padding-top: 0; } }Sakin
Keymaster@Mgx: I see that you are using Free version of Catch Evolution, where you can only use Featured Post Slider. This slider is created to highlight you post. So, you cannot remove that link. Instead if you use Catch Evolution Pro version, there is Featured Image slider where you can upload your image without or with link. It’s optional.
About the post in the homepage, it is the default way that WordPress uses in Blog. It will link to the post. To remove that link it’s bit difficult. You might need to hire developer to work for you on this customization.
I will guide you the process.
1. Build child theme of Catch Evolution Theme
2. Then copy content.php file in your child theme and remove the link from the title
3. For slider you can create functions.php file and copy catchevolution_sliders() function and edit that in your child theme. -
AuthorPosts
