Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@benowchiro: Oh wow, you are adding lot of questions 🙂 Looks like you are trying to make free version to Pro one.
1. You can change the color code in the following css and then add it in “Appearance => Theme Options => Custom CSS” box.
#supplementary .widget-area .widget a:hover { color: #ddd; }2. This is not possible with just custom css. You might consider hiring special CSS Developer to edit this. Sorry not in my hand
Sakin
Keymaster@manfredk:
1. To change the header image below the secondary menu, you need to upgrade to Catch Kathmandu Pro version. Where you will get option to change “Featured Header Image Position” to “Before Menu or After Menu or Before Header or After Top Sidebar from “Appearance => Theme Options => Featured Image Options”So, the easy option is to simply upgrade to pro version. But if you know the coding then you can build the child theme http://catchthemes.com/blog/create-child-theme-wordpress/ and then change the hook potions from your child theme functions.php file. This is complicated way.
Sakin
Keymaster@Salome: Did you try to change the link color in “Appearance => Theme Options => Color Options”. Pick the desire blue color in “Link Color” box and save changes.
Or you can add the following css in “Appearance => Theme Options => Custom CSS” box. which will change the link color in post/page content to blue and make it underline.
#main .entry-summary a, #main .entry-content a { color: #3b5998; text-decoration: underline; }Sakin
Keymaster@Ramon: It shouldn’t be like that. Do you have any cache plugin or anyone else editing your site. This is strange. Maybe some conflict with plugin. Post in your site URL.
November 29, 2014 at 12:09 pm in reply to: How can I change or choose Facebook share picture? #48236Sakin
Keymaster@Salome:
1. For Facebook share images for homepage, you can install “WordPress SEO by Yoast” plugin and then setup image from “SEO => Social”. Then you can test your open graph images from https://developers.facebook.com/tools/debug/
2. Web Clip Icon is the Icon used for Apple devices when they save your site.Sakin
Keymaster@Ramon: Ok that’s nice. I hope you haven’t change any files inside core theme folder ‘catch-kathmandu-pro’. As if you edit any files inside core theme folder, you will lose your customization when you update the theme as all files will be reverted back to original.
So, for any CSS change then you can either add it in “Appearance => Theme Options => Custom CSS” box or build child theme and add it in your child theme css.
Sakin
Keymaster@lorencowka: Still the closing bracket is missing. This code will mess up your site. Please add in the closing bracket before I send you any other css.
Find the following css in your “Appearance => Theme Options => Custom CSS” box
/* center Page Header */ .entry-header .entry-title { text-align: center; .entry-title, .entry-title a { color: #0637; }And replace it with the following:
/* center Page Header */ .entry-header .entry-title { text-align: center; } .entry-title, .entry-title a { color: #0637; }Sakin
Keymaster@lorencowka: First please fix the css I mentioned it above. There is missing closing bracket. All CSS below that css will not work if you don’t fix that.
Sakin
Keymaster@Peter: That’s what I gave you. You can decrease the padding as per your need in the following css and then add it in “Appearance => Theme Options => Custom CSS” box. This will reduce button size.
#homepage-message .right-section a { padding: 10px 30px; }November 28, 2014 at 10:43 pm in reply to: Cannot change pics in the home slide (tiger pictures) #48208Sakin
Keymaster@thor: Yes, if you are using Adventurous Pro theme then you will get option to use “Featured Image Slider, Post Slider, Page Slider and Category Slider. But if you are using Free version then you only have option to use Featured Post Slider and Featured Category Slider.
Yes, we have video screencast for Featured Post Slider: http://catchthemes.com/blog/videos-blog/video-series-adding-featured-post-slider/
and Featured Image Slider: http://catchthemes.com/blog/videos-blog/video-series-adding-featured-image-slider/For more check out theme instructions page at:
Adventurous Theme: http://catchthemes.com/theme-instructions/adventurous/
Adventurous Pro Theme: http://catchthemes.com/theme-instructions/adventurous-pro/Sakin
Keymaster@Peter: This is not our product so I am not sure what it does. WooCommerce works fine in Catch Box Pro theme. So, I guess this should work as well as it’s extension of woocommerce. But you can ask the support of that extension first.
Sakin
Keymaster@Peter: You can adjust the font size and padding as per your need and then add it in “Appearance => Theme Options => Custom CSS” box:
#homepage-message .right-section a { font-size: 26px; padding: 10px 30px; }Sakin
Keymaster@benowchiro: You can change the color as per your need and then add it in “Appearance => Theme Options => Custom CSS” box:
/* Slider controller color */ #controllers a:hover, #controllers a.active { background-color: #009933; } /* Slider border and background color */ #main-slider { background-color: #009933; border-color: #009933; } /* Title Hover Color */ .entry-header .entry-title a:hover { color: #009933; } /* Widgets link Color */ .widget-area .widget a { color: #757575; } .widget-area .widget a:hover { color: #0088cc; }Sakin
Keymaster@panselli: Yes, you can add custom css in “Appearance => Theme Options => Custom CSS” box. But we recommend not to hide it as this is attribution that you give for using free themes and free support.
I see that you are using “Related Posts” plugin. But I am not sure how you have added in Share the love. So, you need to check these codes. This is not from our theme and we will not be able to provide detail help on this.
Sakin
Keymaster@benowchiro: Ok I will check in.
Sakin
Keymaster@lorencowka: Ok there is missing closing
}bracket in your Custom CSS. Go to “Appearance => Theme Options => Custom CSS” box and find the following css:/* center Page Header */ .entry-header .entry-title { text-align: center;Replace it with:
/* center Page Header */ .entry-header .entry-title { text-align: center; }Sakin
Keymaster@Peter: I think you are taking about link color in your sidebar. Then you need to edit the color code in the following css and then add it in “Appearance => Theme Options => Custom CSS” box:
.widget-area .widget a { color: #757575; } .widget-area .widget a:hover { color: #0088cc; }Sakin
Keymaster@aruraza: Thanks. I check in your static frontpage and see that you have added featured image as the buddha image. So, it was displaying this image. Header image will be replaced by the featured image. I have remove the featured image. Check now.
Sakin
KeymasterThanks Manish 🙂
Sakin
Keymaster@JLeroy:
1. To reduce the height and width of featured image. First, just upload the featured image of size 150px width and 150px height. Then you can add the following css in “Appearance => Theme Options => Custom CSS” box.#main #content .post-img { width: 162px; } #main #content .post-img a, #main #content .post-img img { height: 150px; width: 150px; } .type-post.has-post-thumbnail .col5 { width: 450px; }2. Not sure what you mean by space between post text line. I hope you mean the line height. Then you can adjust the line height as per your need and then add the following css in “Appearance => Theme Options => Custom CSS” box.
#main #content { line-height: 24px; } -
AuthorPosts
