Forum Replies Created

Viewing 20 posts - 5,781 through 5,800 (of 14,504 total)
  • Author
    Posts
  • in reply to: Blog page set up #47978
    Sakin
    Keymaster

    @lorencowka:
    1. To show latest post in your homepage.
    – Just go to “Appearance => Theme Options => Homepage Settings => Homepage / Frontpage Settings”
    – Then check in “Enable Latest Posts” and save changes

    2. It will show 10 latest post by default. But if you want to make that eight.
    – Just go to “Settings => Readings”
    – Then type in 8 in “Blog pages show at most” and save changes

    3. I see that you haven’t change/disable Homepage Headline Text:
    – Just go to “Appearance => Theme Options => Homepage Settings => Homepage Headline Options”
    – Then you can edit those text or disable it and save changes

    4. Same, I see that you haven’t change/disable Homepage Featured Conte:
    – Just go to “Appearance => Theme Options => Homepage Settings => Homepage Featured Content Options”
    – Then you can add in text/image or disable it and save change

    Note: For more information about the Catch Kathmandu Pro theme, check out theme instructions page at http://catchthemes.com/theme-instructions/catch-kathmandu-pro/

    in reply to: PHP error on Catch Evolution Module #47975
    Sakin
    Keymaster

    @Brandilyn: sorry I thought you had that issue and trying to remove it, I didn’t realized that you were using it for debugging. We are working with updates. Please wait for few days.

    in reply to: Facebook comments on page #47951
    Sakin
    Keymaster

    @Michaela: Sorry I don’t know that. Please search for plugin at wordpress.org/plugins

    in reply to: Comments sections #47950
    Sakin
    Keymaster

    @Michaela: Yes, that the feature of WordPress comment system. Their website will be linked to their name.

    If you like to edit that, then you need to build child theme and then copy the function catchkathmandu_comment() from template-tags.php file and add that in your child theme functions.php file and edit the code.

    Fore child theme, read this http://catchthemes.com/blog/create-child-theme-wordpress/

    in reply to: sharing buttons location #47949
    Sakin
    Keymaster

    @Michaela: Sorry we don’t have controlled on their plugins. So, you can try posting in their plugin support forum. They might be able to help you.

    in reply to: Featured image blurry #47948
    Sakin
    Keymaster

    @Michaela: Can you post in your site URL and let me know which image are you talking about. Then I can check in and send you the details about it.

    in reply to: How to get rid of stripe texture in featured image slider? #47947
    Sakin
    Keymaster

    @Salome: Please go to “Appearance => Theme Options => Featured Slider => Slider Options”, then check to “Disable Slider Background Effect” and save change. This will remove that stripe texture feature.

    in reply to: PHP error on Catch Evolution Module #47946
    Sakin
    Keymaster

    @Brandilyn: That’s fine. I don’t know why your server in not taking that. Anyway, we are changing that process of IE soon in new version update. So, you don’t need to worry about it. Just need to set false until next version update.

    in reply to: PHP error on Catch Evolution Module #47944
    Sakin
    Keymaster

    @Brandilyn: We will look at in detail. For now, can you go to your wp-config.php file and change
    define('WP_DEBUG', true);

    To
    define('WP_DEBUG', false);

    Sakin
    Keymaster

    @edisonantus: We don’t have custom post type supported in this theme. So to make such changes, I suggest you to add plugin. But if you need to do it manually then you need to build child theme and then create the template as per you need. For child theme, see this http://catchthemes.com/blog/create-child-theme-wordpress/

    in reply to: Change site title font to external font style possible? #47938
    Sakin
    Keymaster

    @Salome: Not sure how you have added in font to your site. Can you tell me which font you have added in your site using that plugin. Then I can give you the custom css to change that. The font for site title is controlled by the following css, you can change that font and add in “Appearance => Theme Options => Custom CSS” box

    #site-title {
        font-family: "Lobster", Arial,sans-serif;
    }
    Sakin
    Keymaster

    @aleks.mavric123: To hide logo from all other places except for home, you can add the following css in “Appearance => Theme Options => Custom CSS” box.

    #site-logo { display: none; }
    .home #site-logo { display: block; }

    You can add image in your sidebar from “Appearance => Widget”. You can use Jetpack plugin, widget visibility module which controls the widget visibility in each pages.

    in reply to: Reduce Sidebar size #47896
    Sakin
    Keymaster

    @lohanc: Ok here goes the detail css to reduce the sidebar and increase the content. Just add the following css in “Appearance => Theme Options => Custom CSS” box.

    @media screen and (min-width: 961px) {
        #primary { width: 520px; }
        #secondary { width: 300px; }
    }
    @media screen and (min-width: 1025px) {
        #primary { width: 580px; }
        #secondary { width: 300px; }
    }
    @media screen and (min-width: 1153px) {
        #primary { width: 660px; }
        #secondary { width: 320px; }
    }
    @media screen and (min-width: 1281px) {
        #primary { width: 740px; }
        #secondary { width: 340px; }
    }
    @media screen and (min-width: 1345px) {
        #primary { width: 790px; }
        #secondary { width: 340px; }
    }
    in reply to: Menus on mobile devices #47895
    Sakin
    Keymaster

    @fmck718: No sure about that. Maybe you are looking from different size of mobile devices. In that case you might want to increase the width. So, replace your current css

    @media screen and (max-width: 767px) {
        #header-top .widget.widget_nav_menu .sb-holder,
        .home #featured-post {
            display: none;
        }
    }

    With the following css:

    @media screen and (max-width: 768px) {
        #header-top .widget.widget_nav_menu .sb-holder,
        .home #featured-post {
            display: none;
        }
    }
    in reply to: Responsive Design Issue #47894
    Sakin
    Keymaster

    @Jason: Can you upload the screenshot in any photosharing site or in your site and add in the url here. So, that I can check the issue in details. Not sure what you mean by margin and broken apart words.

    in reply to: Creating a background for SideBar #47868
    Sakin
    Keymaster

    @CollegeCook: In Simple Catch Theme, the sidebar has plain white background color. If you want to change that then you can add the following css in “Appearance => Theme Options => Custom CSS” box.

    #sidebar { background-color: #fff; }

    in reply to: space between the body and the sidebar #47867
    Sakin
    Keymaster

    @Kim: That’s bit complicated. But you can add the following css which will increase little bit.

    .hentry {
        padding-left: 0;
        padding-right: 0;
    }
    in reply to: CSS coding show not result #47866
    Sakin
    Keymaster

    @Anick: I check in your site and I don’t see any custom css. Can you let me know what are you trying to modify it.

    in reply to: Kathmandu Customization #47865
    Sakin
    Keymaster

    @rojtalbot: you can add the following CSS in “Appearance => Theme Options => Custom CSS”
    #supplementary { padding-top: 0; }

    in reply to: Blog post does not show on first page #47863
    Sakin
    Keymaster

    Hello Helena,

    I see that you have added int he following css in “Appearance => Theme Options => Custom CSS” box.

    .home #content-sidebar-wrap, .page .entry-header {
        display: none;
    }

    Just edit that css to the following:

    .page .entry-header {
        display: none;
    }
Viewing 20 posts - 5,781 through 5,800 (of 14,504 total)