Forum Replies Created

Viewing 20 posts - 3,281 through 3,300 (of 14,507 total)
  • Author
    Posts
  • 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; }
    }
    in reply to: Enter custom CSS #59929
    Sakin
    Keymaster

    @helpme: I don’t get it what you mean. There will be h1 tag in each section.

    in reply to: Blockquote #59872
    Sakin
    Keymaster

    @Herbie: Sorry I don’t get it what you mean. Can you explain in reference with your site URL.

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

    @kathiejs: You can change the size in the following css as per your need and then add it in “Appearance => Theme Options => Custom CSS” box:

    /* Category Widget */
    #secondary .widget_categories ul { font-size: 16px; }
    /* breadcrumb Widget */
    #secondary .widget_breadcrumb_navxt { font-size: 16px; }
    in reply to: use interior page as home page #59868
    Sakin
    Keymaster

    @paul: Cool that you figured it out 🙂

    in reply to: Remove Page Name from Homepage and Shortcode Bug #59867
    Sakin
    Keymaster

    @Kaydev: WordPress Theme shouldn’t support shortcodes see this https://make.wordpress.org/themes/handbook/review/required/explanations-and-examples/.

    Also the shortcode [display-posts] is not from WordPress core. It’s from plugin https://wordpress.org/plugins/display-posts-shortcode/. So, you need to activate this plugin to use that shortcode.

    For title, it take from your site title and page title. So, you need to edit that. Further, you can use plugin like http://wordpress.org/plugins/wordpress-seo/ to edit your SEO/Browser title.

    in reply to: Remove header search box #59866
    Sakin
    Keymaster

    @brian If you are not using child theme, then you can hide it only by using Custom CSS. For that you need to post in your site URL.

    in reply to: how to change colors #59865
    Sakin
    Keymaster

    @eric: Just add the following css in “Appearance => Theme Options => Custom CSS” box:

    body, input, textarea {
        color: #000;
    }
    #branding #access, 
    #colophon #access-footer {
        background: none #000;
    }
    in reply to: Replace site title & tagline with image #59863
    Sakin
    Keymaster

    @dpoulton: It depends on your settings of the website and also we have manage that with css. For now, I guess the maximum height can be 75px and maximum width 700px. But it’s all up to you. Just upload the image and maybe share your site URL if you have issue then I can suggest you.

    in reply to: Making Footer and Header Transparent #59862
    Sakin
    Keymaster

    @Ruthy: That is form your page setting and background image and I don’t have any control on it. But you can try to remove white space by adding in the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:

    .page-id-572 #content .wrapper,
    .page-id-572 #content .hentry {
        padding-top: 0;
        padding-bottom: 0;
    }
    .page-id-572 #content .hentry,
    .page-id-572 #content .hentry .vc_custom_1434726924507 {
        margin-bottom: 0;
    }
Viewing 20 posts - 3,281 through 3,300 (of 14,507 total)