Forum Replies Created

Viewing 20 posts - 5,701 through 5,720 (of 14,497 total)
  • Author
    Posts
  • in reply to: Misc Customizations #48242
    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

    in reply to: Secondary Menu ABOVE Header Image? #48241
    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.

    in reply to: Change link color in posts #48240
    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;
    }
    in reply to: Header logo keeps disappearing #48239
    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.

    in reply to: How can I change or choose Facebook share picture? #48236
    Sakin
    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.

    in reply to: Contact form 7 field length not working #48233
    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.

    in reply to: Blog page set up #48231
    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; }
    in reply to: Blog page set up #48217
    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.

    in reply to: Resize homepage headline button #48216
    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;
    }
    in reply to: Cannot change pics in the home slide (tiger pictures) #48208
    Sakin
    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/

    in reply to: Google product Feed not working #48207
    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.

    in reply to: Resize homepage headline button #48206
    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;
    }
    in reply to: Misc Customizations #48204
    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; }
    in reply to: Help with two format situations please #48203
    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.

    in reply to: Removing white space from header #48202
    Sakin
    Keymaster

    @benowchiro: Ok I will check in.

    in reply to: Blog page set up #48199
    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;
    }
    in reply to: Logo and header top sidebar #48198
    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; }
    in reply to: Appearance –> Customize will not load #48194
    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.

    in reply to: How to remove title and tagline from header? #48178
    Sakin
    Keymaster

    Thanks Manish 🙂

    in reply to: Feature image and font size #48177
    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;
    }
Viewing 20 posts - 5,701 through 5,720 (of 14,497 total)