Forum Replies Created

Viewing 20 posts - 2,821 through 2,840 (of 14,509 total)
  • Author
    Posts
  • in reply to: use "more" option / change font size / photos in widget #62128
    Sakin
    Keymaster

    @bertolotti:
    1. I don’t understand what do you mean by use the option “more”. If you are talking about more button in your post. That that is used for splitting content for archive pages. Read more about it at http://devotepress.com/wordpress-writing-editing/how-to-split-content-using-the-more-tag-option/. So, if you have blog and set it up as “Show Full Content” from “Appearance => Customize => Theme Options => Layout Options => Archive Content Layout”. This this breaks the text when you add that more tags. But it’s not useful when you are using expert layout.

    2. We don’t recommending changing font as it’s responsive design and it changes as per the screensize. But if you want to change it, then you can change the font size in the following css and add it in “Appearance => Theme Options => Custom CSS Options” box. It will change font for

    @media screen and (min-width: 991px) {	
        /* Default Font Sizes */
        body, button, input, select, textarea {
            font-size: 15px;
        }
        /* Title Font Sizes */
        .entry-title, 
        #promotion-message h2, 
        #featured-content #featured-heading {
            font-size: 30px;
        }
        /* Sidebar Widget Title Font Sizes */
        .sidebar .entry-title, .widget-title {
            font-size: 20px;
        }
    }

    3. Yes, you can insert picture in widget. You can drag and drop “CT: Advertisement” widget to your sidebar from “Appearance => Widgets” and then add your image URL in “Image Url” box.

    in reply to: Static Pages Link to Blog area #62124
    Sakin
    Keymaster

    @Michael: Looks like you created those pages as Post. You need to create page from “Pages => Add New”. See this for more information about page https://en.support.wordpress.com/pages/ and also check this for more information about Writing and Editing https://en.support.wordpress.com/category/writing-editing/

    in reply to: Awkward Theme #62120
    Sakin
    Keymaster

    @Pedrof: Please post in your site URL when you post in your support question. So, that I could check in issue in details.

    The login and logout different view issue of more of Cache then of theme. So, please check your cache plugin. Have install Cache plugin like W3 Total Cache, WP Super Cache, WP Rocket Cache or other Cache plugin. Then go to that plugin settings and clear your cache.

    To hide comments are closed, I have already answered you in http://catchthemes.com/support-forum/topic/the-hell-of-comments-are-closed/

    in reply to: How to change the page top margin? #62119
    Sakin
    Keymaster

    @svr: You can add the following css in “Appearance => Theme Options => Custom CSS” box:
    body { padding-top: 0; }

    Sakin
    Keymaster

    @matthewseanmclachlan: You can add the following css. Also you can change box shadow details, color and opacity as per your need.

    #header-top {
        box-shadow: 0 0 7px rgba(0, 0, 0, 0.5);
        -moz-box-shadow: 0 0 7px rgba(0, 0, 0, 0.5); 
        -webkit-box-shadow: 0 0 7px rgba(0, 0, 0, 0.5);
        position: relative;
    }
    in reply to: Featured Slider Image wont load #62116
    Sakin
    Keymaster

    @ami.mehta70: I just check in Catch Responsive Version 1.8 in our server and the slider is working fine. So, there must be some configuration or customization issue in your site.

    If you check your source, there is extra code in the header as below. Can you tell me where do you get that from.

    </head> 
    <body>
    page contents
    </body>
    </html>

    So, check your custom codes if you have any. Try removing that. IF you haven’t added in custom codes then check your plugin, try disabling plugin one by one and check in.

    in reply to: The Hell of ''comments are closed'' #62115
    Sakin
    Keymaster

    @Pedrof: You should have posted in your site URL. So, that I can check in and send you exact css. The comment closed text will be displayed when the comment is closed in your post. To hide that you can add the following css in “Appearnace => Theme Options => Custom CSS” box:
    .nocomments { display: none; }

    in reply to: Page width changes in different browsers #62114
    Sakin
    Keymaster

    @Michaela: Check your cache. Go to ” W3 Total Cache” plugin and clear the cache first. then refresh your browser and check in. As when I check in it’s showing same ins all browser. Also check your browser zoom.

    in reply to: Mobile Menus not working for Catch Responsive Pro #62113
    Sakin
    Keymaster

    @Harry: It’s just the color of your menu. So, just add the following css in “Appearance => Customize => Theme Options => Custom CSS” box, then you will see default mobile menu:

    #masthead #header-left-menu {
        background-color: #000;
        color: #fff;
    }
    in reply to: Featured Content Titles #62108
    Sakin
    Keymaster

    @Phil: You can add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:
    .home #content .entry-header { display: none; }

    Can you send me your site URL so that I check in to add spaces. You can either add padding-bottom or margin-bottom for Promotion headline and it depends on the background change. So, either use:
    #promotion-message { padding-bottom: 20px; }
    or
    #promotion-message { margin-bottom: 20px; }

    in reply to: Creating Contact Us forms #62107
    Sakin
    Keymaster

    @Carol: For contact form, you can use any contact plugin. We recommend using contact form 7 or Jetpack plugin contact form. So, just install/activate the plugin and then add that form shortcode in your contact page. You can check this tutorial from Contact Form 7 http://contactform7.com/getting-started-with-contact-form-7/

    in reply to: Removing "Posted on by WeekendPick – Leave a Reply" #62104
    Sakin
    Keymaster

    @Alexander:
    1. You can add the following css in “Appearance => Theme Options => Custom CSS” box to hide entry meta in Homepage and category pages:
    .home .entry-meta, .archive .entry-meta { display: none; }

    Then to reduce the space between title and excerpt content, you can add the following css:
    .home #content .entry-title, .archive #content .entry-title { padding-bottom: 0; }

    Then if you further want to reduce it then you can change the padding top in the following css and add it Custom CSS box:
    .entry-summary { padding-top: 20px; `}

    2. You can add the following css in “Appearance => Theme Options => Custom CSS” box
    #main-slider img { width: 100%; }

    3. For that, you can add the following css in “Appearance => Theme Options => Custom CSS” box:

    .page-title { font-size: 30px; line-height: 1.3em; }
    @media screen and (max-width: 940px) {
        .page-title {
            font-size: 24px;
            line-height: 1.2;
        }
    }
    @media screen and (max-width: 640px) {
        .page-title {
            font-size: 20px;
        }
    }
    in reply to: Footer widgets 2 and 4 get incorrect left margin in mobile #62081
    Sakin
    Keymaster

    @Haydie: Thanks we will fixed it in next version update.

    in reply to: Mobile Menus not working for Catch Responsive Pro #62080
    Sakin
    Keymaster

    @Harry: Please post in your site URL so that I can check in.

    in reply to: textbox on featured slider : not everywhere #62079
    Sakin
    Keymaster

    @Florence: It should work with Qtranslate-X as well.

    Sakin
    Keymaster

    @matthewseanmclachlan: Ok your logo in too large. Please crop your image to just 160px height and upload it. It’s not good for site loading. Also you need to add shadow in your log itself.

    After that, remove the following css from your custom CSS:
    #header-top { padding-top: 30px; }

    Then add the following css:

    #top-logo img {
        margin-bottom: -70px;
        max-height: 160px;
    }
    #access-top .menu {
        bottom: 10px;
        position: absolute;
        right: 0;
    }
    #access-top ul.menu a {
        font-size: 16px;
    }
    @media screen and (max-width: 940px) {
        #top-logo img {
            max-height: 150px;
        }
    }
    in reply to: WooCommerce Integration #62036
    Sakin
    Keymaster

    @afeauto: First of all the URL of your site is not opening. So, can you post in the correct URL and also let me know which theme are you using it. If you are using Catch Base pro the you don’t need to change anything on code level.

    in reply to: Removing "Posted In", "Tagged" " "Leave a Reply" #62031
    Sakin
    Keymaster

    @Alexander:
    1. You can add the following css in “Appearance => Theme Options => Custom CSS” box:
    .home footer.entry-meta, .archive footer.entry-meta { display: none; }

    2. Yes, as you have added in custom css to use font-family as “Helvetica Neue” which is not there in PC. It’s only there in Mac and apple devices. All the devices which has that font will display that other wise it will look for alternative fonts. Like Arial in your code as you can see the css:
    body, input, textarea { font-family: "Helvetica Neue",Helvetica,Arial,sans-serif; }

    in reply to: space between header image and the primary menu #62028
    Sakin
    Keymaster

    @Thanatip: Thanks for your appreciation 🙂

    in reply to: Catch flames : Text on slider again :/ #62027
    Sakin
    Keymaster

    @Epilost: Yes, your css is working fine. The correct css is:
    #main-slider .entry-container { display: none; }

Viewing 20 posts - 2,821 through 2,840 (of 14,509 total)