Forum Replies Created

Viewing 20 posts - 2,741 through 2,760 (of 14,501 total)
  • Author
    Posts
  • in reply to: How to change the font size of the headers #62682
    Sakin
    Keymaster

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

    @media screen and (max-width: 1024px) {
        .site-title { font-size: 38px; }
        .site-description { font-size: 14px; }
    }
    in reply to: Featured content on specific pages #62678
    Sakin
    Keymaster

    @Susie: Like I told you earlier there is no option to just show featured content in Single page like Gallery. So, what you can do is enable Featured content in entire site and then add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box to hide it from all except gallery page.

    #featured-content { display: none; }
    .page-id-17 #featured-content { display: block; }
    in reply to: Bullet Color, Social Icons Color & Pop-out #62674
    Sakin
    Keymaster

    Yes sure, you can add the following css in “Appearance => Theme Options => Custom CSS” box:

    ul.social-profile li.twitter a {
        background-position: -44px -43px;
    }
    ul.social-profile li.google-plus a {
        background-position: -173px -43px;
    }
    in reply to: use "more" option / change font size / photos in widget #62673
    Sakin
    Keymaster

    @bertolotti: That more tag is only for archive/blog page when you want to show full Content layout options and want to break content. It doesn’t have any effect on page/post. If you are looking to break page content and add pagination then you need to use <!--nextpage--> tag. Read more about it here https://en.support.wordpress.com/splitting-content/nextpage/

    in reply to: Change page order #62585
    Sakin
    Keymaster

    @Dan D: Thanks for your appreciation. Please support Catch Responsive Theme by providing your valuable review and rating at https://wordpress.org/support/view/theme-reviews/catch-responsive?rate=5#postform

    in reply to: Colum / #62584
    Sakin
    Keymaster

    @Daniel: Cool thanks 🙂

    in reply to: Not being notified by email for new comments #62472
    Sakin
    Keymaster

    @Laszlo: Sorry this is not a theme issue. So, can you consider asking in WordPress forum. It’s the issue with WordPress settings. Yes, it should email in the address you have in “Settings => General => E-mail Address”.

    Also, check in your spam/junk folder in your email.

    in reply to: Comment box background color and font? #62469
    Sakin
    Keymaster

    @Laszlo: For that you can adjust the margin-top and padding-bottom in the following css as per your need and then add it in “Appearance => Theme Options => Custom CSS” box:

    #comments-title, #reply-title {
        margin-top: 30px;
        padding-bottom: 30px;
    }
    #comments .navigation {
        padding-bottom: 0;
    }
    in reply to: Colum / #62455
    Sakin
    Keymaster

    @Daniel: Thanks for your appreciation. For banner in homepage. Please check.
    1. Go to “Appearance => Theme Options => Header Featured Image Options” and check option “Enable Featured Header Image”, there you should check in “Entire Site, Page/Post Featured Image”
    2. If this is fine, then edit your homepage and check in “Header Featured Image Options” in “Catch Flames Options” box below you post editor.

    in reply to: Beginner Question: Featured Blog Postings #62454
    Sakin
    Keymaster

    @philmi: I see that you are using Catch Responsive Free theme which has some limitation over Pro version. You can check additional information about pro version at http://catchthemes.com/theme-instructions/catch-responsive-pro/

    1. Yes, in free version you only have option to user “Featured Page slider” and “Featured Page Content”. For this, you just need to create pages from “Pages => Add New” and then you can select that page in your slider from “Appearance => Customize => Featured Slider => Feature Slider Options”.

    But for Slider and featured content, make sure you have added in featured image in those page. As featured image will show in your slider and featured content. For featured content, check this http://catchthemes.com/blog/videos-blog/video-series-adding-featured-image-wordpress-postpage/

    2. Where did you change the css. I hope you haven’t made modification to theme file like style.css. If you have done that then remove it as all the files inside ‘catch-responsive’ theme folder will be reverted back to original when you update the theme. So, best if to either use Custom CSS box at “Appearance => Customize => Theme Options => Custom CSS Options” box or if you have large css edit then it’s preferred to build child theme and add your css in your child theme style.css file.

    So, to change the font size of just date/comments, we called it at entry meta. For this, just change the font size in the following css as per your need and then add it in “Appearance => Customize => Theme Options => Custom CSS Options” box:
    .hentry .entry-meta { font-size: 14px; }

    in reply to: Comment box background color and font? #62453
    Sakin
    Keymaster

    @Laszlo: For comment box, background color and color you can adjust color code in the following css as per your need and then add it in “Appearance => Theme Options => Custom CSS” box:

    #respond #commentform textarea {
        background-color: #fff;
    }
    #respond #commentform .text,
    #respond #commentform textarea {
        color: #aaa !important;
    }
    in reply to: logo, color, form the navigation bar #62452
    Sakin
    Keymaster

    @Barb: Can you post in your site URL as Catch Box theme doesn’t have green color menu bar.
    Also let me know what you want to do by removing continue reading. Do you just want to hide that text or you want to show full content in homepage.

    in reply to: logo, color, form the navigation bar #62451
    Sakin
    Keymaster

    @Dhuan:
    1. To add logo to your site, you can go to “Appearance => Header”. Then if you want your header image to be with site title and tagline, then you can add the following css in “Appearance => Theme Options => Custom CSS” box:

    #site-logo, #hgroup.with-logo {
        display: inline-block;
        float: left;;
    }

    2. For menu curved top left and bottom right, you can add the following css in “Appearance => Theme Options => Custom CSS” box:

    #branding #access, #colophon #access-footer {
        -moz-border-radius: 10px 0;
        -webkit-border-radius: 10px 0;
        border-radius: 10px 0;
    }

    3. To change the background color of the main area, then you can change the color code in the following css and then add it in “Appearance => Theme Options => Custom CSS” box:
    #main { background-color: #eee; }

    4. All the changes that you have mage it through theme options panel and your pages, posts, category and all will be remain unchanged when you update the theme. But if you have mode modification to core theme files like style.css, functions.php, index.php and so on or add/edit any files inside ‘catch-box’ folder, then these edits will be gone when you update. As update restores all original files and folder inside ‘catch-box’ folder.

    in reply to: Featured image not showing on emails #62450
    Sakin
    Keymaster

    @Chioma: It’s not from our theme. Which plugin are you using for post subscription. You need to check with that plugin support forum.

    in reply to: Footer Display #62449
    Sakin
    Keymaster

    @Michael: You can add the following css in “Appearance => Theme Options => Custom CSS” box to center the footer content.

    #site-generator .copyright, #site-generator .powered {
        display: block;
        text-align: center;
        width: 100%;
    }

    Sorry I don’t get it what you mean by topic tag area. Can you post in your site URL and explain please.

    in reply to: Space in Main Navigation Menu #62448
    Sakin
    Keymaster

    @Kim: Welcome back to forum
    1. that 20px is default space. Increase that to 30 and then you will see the changes.

    2. It’s because of the padding you have added in your child theme style.css. You can go to that css and remove it.

    @media screen and (max-width: 1280px) {
        .site #header-menu ul.menu a, 
        .site #footer-menu ul.menu a {
            padding: 0 10px;
        }
    }
    
    @media screen and (max-width: 1100px) {
        .site #header-menu ul.menu a, 
        .site #footer-menu ul.menu a {
            padding: 0 8px;
        }
    }
    
    @media screen and (max-width: 1000px) {	
        .site #header-menu ul.menu a, 
        .site #footer-menu ul.menu a {
            font-size: 13px;
        }
    }

    3. I don’t get it what you mean.

    in reply to: Mobile Version of Desktop top header menu #62444
    Sakin
    Keymaster

    @Michael: Ok then you can add the following css in “Appearance => Theme Options => Custom CSS” box:

    #header-right .widget_nav_menu { display: none; }
    #header-mobile-menu { display: block; }
    Sakin
    Keymaster

    @riordino: For that just go to “Appearance => Customize => Featured Content => Featured Content Options => No of Featured Content”, change that to 10 and then click on “Save & Publish”. Then close your customizer and go back to “Appearance => Customize => Featured Content => Featured Content Options”, you will see 10 boxes.

    in reply to: Change page order #62441
    Sakin
    Keymaster

    @Dan D: Just use Custom Menu and then you can drag and drop pages as per your need. For that, just go to “Appearance => Menus” and then create new menu. After that you can add in the pages that you want to show in your menu. You can drag up and down for menu arrangement. After completing your menu, you need to assign your menu location from “Appearance => Menus => Manage Locations”. For more, check this http://catchthemes.com/blog/custom-menus-wordpress-themes/

    in reply to: featured slider: how to "mix" posts and images #62427
    Sakin
    Keymaster

    @Florence: Sorry you cannot mix “Featured Image Slider” and “Featured Post Slider” as these two have different functions.

    If you want to hide the content in your “Featured Post Slider” then you can add the following css in “Appearance => Theme Options => Custom CSS” box:
    #main-slider .entry-container { display: none; }

    Also you can use “Featured Image Slider” and for 3 languages text in slider, you can use plugin like WPML or Polylang. You can add image and title, then install any of these plugin. After that go that those plugin string translation and translate it.

    About the logo, we are using WordPress default custom header. So, if you those plugin have option to add in then you can.

Viewing 20 posts - 2,741 through 2,760 (of 14,501 total)