Forum Replies Created

Viewing 20 posts - 3,281 through 3,300 (of 14,509 total)
  • Author
    Posts
  • in reply to: Linked text doesn't show on the Featured Page #59994
    Sakin
    Keymaster

    @alexch: Sorry I don’t get it what you mean, the links that you have posted in in so weird.

    in reply to: Blockquote #59993
    Sakin
    Keymaster

    @Herbie: You can add border on the left by adding in the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:

    blockquote {
        border-left: 4px solid #1b8be0;
        padding-left: 10px;
    }

    The double quote mark in the blockquote is from the following css and change it as per your need.

    blockquote:before {
        content: "\201C";
    }
    in reply to: Remove Page Name from Homepage and Shortcode Bug #59968
    Sakin
    Keymaster

    @Kaydev: Sorry there in no option to do that. For that you need to build child theme and then create page template for blog page and then set latest post in the home and then assign that blog page the blog template.

    in reply to: attachment page #59967
    Sakin
    Keymaster

    @effess: If you want to remove that then you need to build child theme. For child theme refer to http://catchthemes.com/blog/create-child-theme-wordpress/ where you can even download sample child theme. Then add the following code in your child theme functions.php file.

    function catchkathmandu_unhook_functions() {
    	remove_filter( 'attachment_link', 'catchkathmandu_enhanced_image_navigation', 10, 2 );
    }
    add_action( 'init','catchkathmandu_unhook_functions');
    in reply to: Add Title to Posts Page #59966
    Sakin
    Keymaster

    @tinsonit: Ok for that, you need to build child theme and then copy index.php file in your child theme and then add the following code just below the code: <main id="main" class="site-main" role="main">

    <?php if( is_home() && get_option('page_for_posts') ) : ?>
    	<header class="page-header">
    		<h1 class="page-title"><?php echo apply_filters('the_title',get_page( get_option('page_for_posts') )->post_title); ?></h1>
    	</header>
    <?php endif; ?>
    in reply to: Featured Image takes over the header in posts #59965
    Sakin
    Keymaster

    @kathiejs: When I check in your site, its’ working fine. I am bit confused which option what you want to disable.

    in reply to: Widget Centering and Footer Padding #59964
    Sakin
    Keymaster

    @Anne: Thanks a lot for your appreciation.

    in reply to: Move Secondary Menu Above Featured Slider #59963
    Sakin
    Keymaster

    @Kaydev: Your settings will be automatically there in child theme. You might just need to reassign menu if you are using custom menus.

    in reply to: Increase body width/decrease sidebar width #59962
    Sakin
    Keymaster

    @warekart: You site is not accessible. It is showing 503 Service unavailable. So, let me know once your site is live back.

    in reply to: Font size in sidebar widget #59961
    Sakin
    Keymaster

    @kathiejs: Please check your css with the css that I have posted in. It should be li and not il. You have css as below:
    #secondary .widget_categories ul il { font-size: 16px; }
    Where it should be as:
    #secondary .widget_categories ul li { font-size: 16px; }

    in reply to: Can't upgrade theme in WordPress #59960
    Sakin
    Keymaster
    in reply to: Widgets too far apart #59959
    Sakin
    Keymaster

    @Orlando: You can adjust the margin bottom as per your need in the following css and then add it in “Appearance => Customize => Theme Options => Custom CSS Options” box:
    .sidebar-primary .widget { margin-bottom: 40px; }

    in reply to: Featured Slider Issues #59958
    Sakin
    Keymaster

    @Christine: Looks like there is plugin or plugin configuration issue. So, first go to “WP Super Cache” plugin settings and check your settings like if you have Minify settings, try unchecking “JS minifier”, after you change this settings, make sure you clear your cache. Then is this doesn’t work then you might need to check in disable plugin one by one to find the conflicting plugin.

    If this is not working then I need to check in your server. Let me know it and then I will email you.

    in reply to: Download newest version of Kathmandu Pro #59946
    Sakin
    Keymaster

    @Lisa: Yes, to update Premium/Pro theme from your WordPress Dashboard, you need to activate Catch Updater Plugin http://catchthemes.com/wp-plugins/catch-updater/. Then download zip file from your account at http://catchthemes.com/my-account and install update from “Appearance => Themes => Add New => Upload Themes”.

    Thanks @bigoslesli for fast response.

    in reply to: How can i to justify content on Featured Pages? #59945
    Sakin
    Keymaster

    @alexch: You can add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:

    #featured-content .entry-content,
    #featured-content .entry-excerpt {
        text-align: justify;
    }
    in reply to: Chicago Pro breadcrumb after header image #59943
    Sakin
    Keymaster

    @Vidal: Yes, for that you need to build child theme. For child theme, refer to http://catchthemes.com/blog/create-child-theme-wordpress/ . Then you need to add the following code in your child theme functions.php file. But it won’t look nice.

    function chicago_unhook_functions() {
    	remove_action( 'chicago_after_header', 'chicago_add_breadcrumb', 10 );
    }
    add_action( 'init','chicago_unhook_functions');
    
    add_action( 'chicago_after_header', 'chicago_add_breadcrumb', 45 );
    in reply to: Main Menu and Sub-Menu Active Colors #59936
    Sakin
    Keymaster

    @Kaydev: There is color options in “Appearance => Customize => Color Options => Primary Menu Color Options”. There you can change Menu, Hover/Active, Sub-menu colors as per your need.

    Can you post in your custom css that you have in “Appearance => Customize => Theme Options => Custom CSS Options” box, as I see extra closing bracket } at the end.

    Try adding in the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:

    .nav-primary .menu .sub-menu li a:hover,
    .nav-primary .menu .sub-menu li a:focus {
    	color: #21759b;
    }
    in reply to: catch box free #59933
    Sakin
    Keymaster

    @texasman: Sorry I don’t get it what you mean. What is the maximum width of your site that you want to change to? Then what is the width of your sidebar that you want to be fixed. Then accordingly we need to change the width of the content as per the responsive design.

    in reply to: Font size in sidebar widget #59932
    Sakin
    Keymaster

    @kathiejs: ok for category, replace previous css with the following:

    /* Category Widget */
    #secondary .widget_categories ul li { font-size: 16px; }
    in reply to: responsive menu background #59930
    Sakin
    Keymaster

    @effess: You can add the following css in “Appearance => Theme Options => Custom CSS” box:

    @media screen and (max-width: 767px) {
        #hgroup-wrap .sb-holder { background-color: #6f3b97; } 
        #hgroup-wrap .sb-holder a { color: #fff; }
    }
Viewing 20 posts - 3,281 through 3,300 (of 14,509 total)