Forum Replies Created

Viewing 20 posts - 5,701 through 5,720 (of 14,504 total)
  • Author
    Posts
  • in reply to: Edit "Permalink to" message #48286
    Sakin
    Keymaster

    @KitSinclair: When I check in your site, there is no alt text in the image. Maybe you have already remove it.

    But to edit this, it’s bit complicated.
    1. First you need to build child theme. You can check our tutorial and also download the sample child theme from http://catchthemes.com/blog/create-child-theme-wordpress/
    2. Open the file catcheverest-functions.php file from catch-everest theme directory. Then copy whole function code catcheverest_post_sliders() to your child theme functions.php file
    3. Then you and edit that code. Just remove all Permalink to and save your functions.php file and just activate your child theme.
    4. Sometime, you need to save changes in your Theme Options panel to clear the cache.

    in reply to: Blog page set up #48272
    Sakin
    Keymaster

    @lorencowka: So what you want to do it? Can you explain it so that I can send you css for that. Maybe you can show me screenshot of what you want.

    in reply to: How can I change or choose Facebook share picture? #48265
    Sakin
    Keymaster

    @Salome: This is done by Open Graph system and this falls in plugin territory. I also gave you link to test your open graph https://developers.facebook.com/tools/debug/. It is working fine in your blog post as it see the featured image and take the featured image as the open graph image. But your homepage, list all the latest post. So, it takes the first featured image.

    WordPress SEO by Yoast is the best plugin to handle this and it also improves your site Search Engine Optimization.

    in reply to: Misc Customizations #48263
    Sakin
    Keymaster

    @benowchiro: Buying is your decision and I don’t force you. Just purchase it when you feels like to or donate to free version. It’s all your wish.

    1. For this, you can add the following css in “Appearance => Theme Options => Custom CSS” box:

    .widget.widget_recent_entries ul { list-style: disc; }
    .widget.widget_recent_entries ul li { margin-left: 20px; }

    2. To add separator image, you have two options.
    First, you can use the css and add image with that.

    #masthead  {
        background: url("Iamge-URL") repeat scroll center bottom transparent;
    }

    Second option, you can upload Header Featured Image Form “Appearance => Theme Options => Header Featured Image Options” and in “Enable Featured Header Image”, select “Entire Site”.

    3. You can add the following css in “Appearance => Theme Options => Custom CSS” box:
    #featured-post .entry-title { text-align: center; }

    in reply to: white space below secondary menu #48261
    Sakin
    Keymaster

    @Peter: You can add the following css in “Appearance => Theme Options => Custom CSS” box:
    #main { padding-top: 0; }

    Also, I see that you have following css in Custom CSS, which you need to change it. So, find the following css:
    .page .entry-title { display: none; }
    and replace it with following:
    .page .entry-header { display: none; }

    in reply to: Blog page set up #48258
    Sakin
    Keymaster

    @lorencowka: What is your issue with the search. I don’t know how you have added in search in menu. As we don’t have that option in our theme.

    in reply to: Contact form 7 field length not working #48243
    Sakin
    Keymaster

    @Ramon: It should work, we have been doing this to all our users. Maybe the changes you made in style.css conflicting with it. Can you post in your site URL.

    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; }
Viewing 20 posts - 5,701 through 5,720 (of 14,504 total)