Forum Replies Created

Viewing 20 posts - 3,281 through 3,300 (of 14,502 total)
  • Author
    Posts
  • 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;
    }
    in reply to: Remove Previous/Next in single posts #59861
    Sakin
    Keymaster

    @alexch: You can hide that from custom css. For that, you can just add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:

    .post-navigation { display: none; }

    To translate any theme text, you need to create .po and .mo files from .pot file you will find inside languages folder “catch-responsive/languages/catchresponsive.pot”. You can use free software form http://poedit.net/.

    Let me know if you are interested in translating then I can email you more details and also we will include that file in language folder in next version. So, it will stay in theme when you update as well.

    in reply to: Various Issues #59859
    Sakin
    Keymaster

    Hi Richard,

    Thanks for your appreciation and purchasing Catch Responsive Pro theme. Oh wow, you have long list of questions.

    1. To change the size of content box in the slider, you can change the width in the following css and then add it in “Appearance => Customize => Theme Options => Custom CSS Options” box:

    @media screen and (max-width: 701px) { 
        #feature-slider .entry-container { width: 60%; }
    }

    To change the background color of the box, you can change the rgba color code in the following css as per your need and add it in “Custom CSS Options” box:

    #feature-slider .entry-container {
        background: rgba(0,0,0,0.7);
    }

    2. You can remove that by making padding bottom zero. For that, you can add the following css in “Custom CSS Options” box:
    #feature-slider { padding-bottom: 0; }

    3. When you are using Footer 1 and Footer 2 area, each area will take 50% of the whole footer area. But the left alignment is left of the footer 1 text will start from left and same with footer area 2. For this you can either, center the text by adding the following css:

    #supplementary .widget-area {
        text-align: center;
    }

    Or you can just text alight right to footer area 1:

    @media screen and (min-width: 479px) {
        #supplementary #first.widget-area { text-align: right; }
    }

    4. To remove the search in menu above the slider, go to “Appearance => Customize => Navigation” and check option “Check to disable search box in Primary Menu” then Save & Publish it.

    5. For mailchip form in homepage. Yes, that should be control from plugin. Looking at the code, you can add the following css in “Custom CSS” box:

    .entry-content .content-column.one_half {
        display: block;
        float: none;
        margin: 0 auto;
        width: 50%;
    }

    Note: if you can remove code style="padding-right:100px;" from mail chimp form then it will be great.

    in reply to: Enter custom CSS #59857
    Sakin
    Keymaster

    @helpme:
    1. Your site Title and tagline is not reducing in mobile devices as your have fixed size in custom css. Either you need to remove that or add mobile devices size. You can add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” Box:

    /* Mobile Font Sized for Title and Tagline
    @media screen and (max-width: 768px) {
        .site-title { font-size: 28px; }
        .site-description { font-size: 18px; }
    }

    2. You can add the following css to hide author from entire site.
    .entry-meta .by-author, .entry-meta .byline { display: none; }

    3. For comment text, you can remove that from option panel directly in Pro version but in free version, you can hide it with custom css. For that, you can add the following css:
    .form-allowed-tags { display: none; }

    in reply to: Footer Widget background #59856
    Sakin
    Keymaster

    @Dennis: Yes, that Custom CSS box is there to add in your own css which will overwrite theme css.

    in reply to: Re-arrange Right header right menu and social icons #59817
    Sakin
    Keymaster

    @knudkp: Yes, just go to “Appearance => Widgets” and move the position of your custom menu and social icon in “Header Right” sidebar.

Viewing 20 posts - 3,281 through 3,300 (of 14,502 total)