Forum Replies Created

Viewing 20 posts - 4,741 through 4,760 (of 14,499 total)
  • Author
    Posts
  • in reply to: Header side margins and padding #52755
    Sakin
    Keymaster

    @notjustblack: Thanks for your appreciation and review 🙂

    in reply to: Background Widget Color and Disappearing Menu #52753
    Sakin
    Keymaster

    @luvharris: To change the footer sidebar area to white from blue, you can add the following css in “Appearance => Theme Options => Custom CSS” box:
    #footer-sidebar { background-color: #fff; }

    Then later, you might want to change the border color as well. For that, change the color code in the following css and then add it in “Appearance => Theme Options => Custom CSS” box:
    #colophon { border-color: #1b5f7d; }

    in reply to: Remove title from page #52751
    Sakin
    Keymaster

    @leotrim77: Try adding in the following css in “Appearance => Theme Options => Custom CSS” box:
    #content .type-page .entry-title { display: none; }

    in reply to: Change on hover #52749
    Sakin
    Keymaster

    @harriet: Add the following css in “Appearance => Theme Options => Custom CSS” bnox:
    .home #content .entry-title a:hover,
    .home #content .entry-title a:focus,
    .home #content .entry-title a:active {
    color: #eee;
    }

    in reply to: Search results layout #52748
    Sakin
    Keymaster

    @notjustblack:
    1. You can add the following css in “Appearance => Theme Options => Custom CSS” box:
    .search-results .entry-meta { display: none; }

    2. Search result page will show featured image of that post. Other then that you need to build child theme and customize it.

    3. Just go to “Appearance => Theme Options => Excerpt/Mote Tag Settings” and change More Tag Text and Excerpt length(words).

    in reply to: Space between the top of the page and the logo #52746
    Sakin
    Keymaster

    @Marcus: Simply add the following css in “Appearance => Theme Options = Custom CSS” box:
    #sidebar-header-right { display: none; }

    in reply to: Center Main Menu #52745
    Sakin
    Keymaster

    @Kenneth: You can try adding in the following css in “Appearance => Theme Options => Custom CSS” box:
    #branding #access { text-align: center; }
    #branding ul.menu li { display: inline-block; float: none; }

    in reply to: Homepage Headline/ Subheadline #52744
    Sakin
    Keymaster

    @Lisa: Sorry there is no option to do that. If you know the coding then you can build child theme and add image in that area.

    in reply to: Change Color of Footer #52743
    Sakin
    Keymaster

    @livlevi2: There is option in “Appearance => Theme Options => Color Options => Site Color Options”. There you can change Footer Background Color, Footer Background Sidebar Color. Further, if you want to change color of any item that is not there in color option then please add in your site URL explain which element color you want to change with the color code. Then I will provide you custom css.

    in reply to: Space between Slideshow/Footers #52742
    Sakin
    Keymaster

    @albertoc: Can you check your setting at “Appearance => Theme Options => Homepage Settings => Homepage/Frontpage Settings”. Since, you don’t need front page or latest post, you can just “Uncheck” option “Enable Latest Posts or Page” and save changes.

    Further, if this doesn’t fix it then you can add the following css in “Appearance => Theme Options => Custom CSS” box:
    .home #main { padding-top: 0; }

    in reply to: Main Nav Stop Scrolling #52697
    Sakin
    Keymaster

    @Kim: After you set it up menu as Fixed Header Top then don’t forget to enable Fixed Header Top bar from “Appearance => Theme Options => Fixed Header Top Options =>
    Enable Fixed Header Top”.

    in reply to: Fixed/Sticky Menu and Transparency/Opacity #52695
    Sakin
    Keymaster

    Ok then remove the previous css that I gave you. Which is
    #header-right {
    margin-right: 10px;
    margin-top: -60px;
    }

    Then add the new css:
    #header-left {
    position: relative;
    z-index: 1;
    }
    #header-right {
    margin-right: 10px;
    margin-top: -60px;
    position: relative;
    z-index: 10;
    }

    You can just disable Header Featured Image. For that go to “Appearance => Theme Options => Header Featured Image Options” and in “Enable Featured Header Image”, you can select “Disable” and save changes.

    in reply to: How to remove Website field in comments #52692
    Sakin
    Keymaster

    @Keith: There is no option to remove website field in the comments. It’s from the WordPress Comment. For this you need to build child theme, for child theme check out http://catchthemes.com/blog/create-child-theme-wordpress/ and add the following code in child theme functions.php file:

    /**
     * Altering Comment Form Fields
     * @uses comment_form_default_fields filter
     */
    function adventurous_comment_form_fields( $fields ) {
    
    	unset( $fields['url'] );
    	return $fields;
    }
    add_filter( 'comment_form_default_fields', 'adventurous_comment_form_fields' );
    in reply to: Small Sqaure Appears Between Under Header #52691
    Sakin
    Keymaster

    @Lorkster: it’s loading Header Featured Image and the image URL is not found that is why it is showing like that. So, you need to go to “Appearance => Theme Options => Header Featured Image Options” and in “Enable Featured Header Image” option select “Disable” and save changes. Then also check in “Featured Header Image URL” there.

    in reply to: Full Width adjustment #52690
    Sakin
    Keymaster

    Sorry I guess so that is why it’s pro version. There are lot of other premium features, you can check our theme instructions page at http://catchthemes.com/theme-instructions/catch-base-pro/

    in reply to: Comment box is not at the right position #52689
    Sakin
    Keymaster

    @IceCreamHunter: I cannot check in detail as you have all Cache with WP-Super-Cache plugin. So, you need to clear your cache from WP Super Cache plugin settings and check in.

    in reply to: Wrong translation in theme admin area #52686
    Sakin
    Keymaster

    @Felix: Sorry I don’t get it what you mean. The admin area depend on the WordPress Installation. If you have installed it in English then it will show in English.

    in reply to: How to make site title and description font bigger #52685
    Sakin
    Keymaster

    @andriansah: Current font size of the title and description is 36px and 14px respectively. If you want larger then increase the font size in the following css and then add it in “Appearance => Theme Options => Custom CSS” box:

    @media screen and (min-width: 960px) {
    #site-title { font-size: 36px; }
    #site-description { font-size: 14px; }
    }

    in reply to: Theme install failed #52683
    Sakin
    Keymaster

    @Michael: You cannot just so auto update from WordPress Dashboard for the pro version. You need to download zip file from your account at http://catchthemes.com/my-account/ and then follow the instructions mentioned in http://catchthemes.com/theme-instructions/catch-kathmandu-pro/

    The easy option will be to use Catch Updater plugin http://catchthemes.com/wp-plugins/catch-updater/

    in reply to: Full Width adjustment #52682
    Sakin
    Keymaster

    Hello Philippe,

    Are you trying to accomplish No Sidebar Full Width layout like this http://catchthemes.com/demo/catchbox-pro/parent-page/no-sidebar-full-width/ then it’s only there in pro version.

    Regards,
    Sakin

Viewing 20 posts - 4,741 through 4,760 (of 14,499 total)