Forum Replies Created

Viewing 20 posts - 5,781 through 5,800 (of 14,497 total)
  • Author
    Posts
  • 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;
    }
    Sakin
    Keymaster

    @MIchael: To remove action in child theme, you need to hook with init action. See the code as below:

    // Removing the Default Action Hook
    function unhook_catchkathmandu_functions() {
    	//Add in you hook here
    	remove_action( 'catchkathmandu_before_main', 'catchkathmandu_homepage_featured_position', 5 );
    }
    add_action( 'init', 'unhook_catchkathmandu_functions' );
    in reply to: Problem with small table #47861
    Sakin
    Keymaster

    @Tillman:

    1. You are using Catch Box Pro theme, which is build in responsive design. So, when you use the table you need to use responsive table. Better I suggest you to use Responsive Column. You can use install responsive column plugin and add the image on it. Then you will not have image issue.

    2. You table is larger in 100%. As you have used 4 td elements each 25%, but you forgot the padding that each td is taking 10px each at the right and further it has border on it.

    3. Ok you can remove the border and padding in your image by adding in the following css in “Appearance => Theme Options => Custom CSS” box.

    img[class*="align"], img[class*="wp-image-"], #content .gallery .gallery-icon img, img.wp-post-image, img.attachment-thumbnail {
        border: none;
        padding: 0;
    }
    in reply to: Theme #47860
    Sakin
    Keymaster

    @ashrafashraf: Wow this is huge and it all depends on the plugin you use. For Gallery, I recommend you to use either NExtGen Gallery or JetPack plugin.

    in reply to: Slide featured image url #47859
    Sakin
    Keymaster

    @TBM: Sorry the free version only have Featured Post Slider option. This slider is created to highlight your post in the slider. So, it will automatically add links to respective post. If you just want image, then you need to use Image Slider, which is there only in Pro version, see this http://catchthemes.com/blog/videos-blog/video-series-adding-featured-image-slider/

    But for free version you don’t have that option. But if you know the technical details, then you can build child theme and edit the post slider codes.

    in reply to: Reduce Sidebar size #47858
    Sakin
    Keymaster

    @lohanc: I check in your site and it’s not using our theme. So, how can I help you with that.

    1. Yes, only the pro version have full width and no sidebar layout. You can check out the theme instructions page for more details about pro version http://catchthemes.com/theme-instructions/catch-kathmandu-pro/. The size of the sidebar is designed properly as per the screensize. So, I don’t recommend to change this. Also we don’t resize with the CM, as website doesn’t recognize CM. We use Pixels or Percentage.

    2. Yes, you can change the color code in the following css and then add it in “Appearance => Theme Options => Custom CSS” box:
    #hgroup-wrap { background-color: #ccc; }

    in reply to: Selected menu bar item color #47857
    Sakin
    Keymaster

    @aleks.mavric123: You can change the color code in the following css as per your need and then add it in “Appearance => Theme Options => Custom CSS” box.

    #header #mainmenu ul li.current-menu-item a, 
    #header #mainmenu ul li.current-menu-parent a,
    #header #mainmenu ul li.current_page_item a, 
    #header #mainmenu ul li.current_page_ancestor a {
        background-color: #444;
        color: #fff;
    }
    in reply to: Two blogs on one site #47856
    Sakin
    Keymaster

    @fmck718: I am not sure what you mean in 1. But for 2, sorry there is not option to do that. You might need to search for category plugin.

Viewing 20 posts - 5,781 through 5,800 (of 14,497 total)