Forum Replies Created

Viewing 20 posts - 2,601 through 2,620 (of 14,509 total)
  • Author
    Posts
  • in reply to: Featured content in a static homepage #64793
    Sakin
    Keymaster

    @Ouss1984: Yes, you are right.
    When I check in your site. I don’t see feature page content. So, I need to check in your server as it’s working fine in our site.
    I will email you and then please reply me there.

    in reply to: Getting an error message in customize screen #64792
    Sakin
    Keymaster
    in reply to: Slider Plugin : Royalslider #64791
    Sakin
    Keymaster

    @Lizi: If you have downloaded child theme from that link then responsive css will be enqueued from your child theme functions.php file.

    in reply to: Mobile Menu Icon opens a page #64789
    Sakin
    Keymaster

    @tobman: Now sure which CSS @HallMarc used. But when I check in our demo site at http://catchthemes.com/demo/full-frame/, the mobile menu is working fine.

    Maybe post in your site URL and let me know which device you are checking in from.

    in reply to: Header position and size #64788
    Sakin
    Keymaster

    @m3evm: That header image size depend on the content it has on. If you have Site title, tagline and logo then you will see more of it. So, now you need to adjust the height as per your need by adding css in “Appearance => Customize => Theme Options => Custom CSS Options” box. You can see the following css where I have fixed minimum height for large screen and small screen. You can change as per your need.

    /* Large screen above 991px */
    @media screen and (min-width: 991px) {	
        #masthead { min-height: 650px; }
    }
    /* Small screen below 991px */
    @media screen and (max-width: 990px) {	
        #masthead { min-height: 500px; }
    }
    in reply to: Previous/Next on Archive pages #64785
    Sakin
    Keymaster

    @Kim: Sorry not sure about it. You need to check for plugin to do this. Theme are not allowed to change default post navigation.

    in reply to: Header Image Size and Social Links #64783
    Sakin
    Keymaster

    @pjbovee:
    1. For detail support, please post in your site URL so that I can check in and send you custom css. For now, you can try adding the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box. In the following css, you can increase or decrease padding as per your need.

    @media screen and (min-width: 991px) {	
        #masthead { padding: 200px 0; }
    }

    2. Yes, you can add social icon to your widget area from “Appearance => Widgets” and the drag and drop “CT: Social Icons” widget to your sidebar.

    in reply to: Responsive Pro Update to 3.2 not possible #64766
    Sakin
    Keymaster

    @Joachim: Thanks and for others update instructions is mentioned in theme instructions page at http://catchthemes.com/theme-instructions/catch-responsive-pro/#updating

    in reply to: How to change the margins(?) between the content and sidebar #64765
    Sakin
    Keymaster

    @Chatfield Court: I see that you have customize the site width without checking in responsive css.
    I don’t get it why you have following css in you child theme style.css. This is causing issues. So, I suggest you to remove that.

    #page {
        margin: 0 auto 2em;
        max-width: 1200px;
    }
    #secondary {
        float: right;
        margin-right: 3%;
        width: 20.5%;
    }
    #content {
        margin: 0 28.6% 0 3%;
        width: 75.5%;
    }

    I think you want to increase the the width of the site. For, that you need to need to adjust the width in the following css as per your need and then add it in you child them style.css

    @media screen and (min-width: 1025px) {
        /* Overall Site Width */
        .site {
            max-width: 1200px;
            width: 100%;
        }
        /* Content Width */
        #primary {
            width: 68%;
        }
        /* Sidbear Width */
        #secondary {
            margin: 0;
            width: 30%;
        }
    }
    in reply to: Fixed Header Size and # of featured content #64764
    Sakin
    Keymaster

    @Jeff:
    1. Fixed header height changes, if you change the height of menu items or logo or icon as it is wrapped by menu wrapper. We called that as Fixed header top menu. But if you like to manually increase the height, then you can adjust the height in the following css as per your need and then add it in “Appearance => Customize => Theme Options => Custom CSS Options” box:
    .nav-primary { height: 50px; }

    2. To change the number of Featured Content. You need to go to “Appearance => Customize => Featured Content => Featured Content Options => No of Featured Content” and change the number and click on “Save & Publish”, then you need to refresh your browser or close the customizer and reopen it again as that customizer need to be refreshed. Then you will see the number has been changed.

    in reply to: CT: Featured Post (image as a link) #64763
    Sakin
    Keymaster

    @Alexis: Thanks for your appreciation. Yes, the post widget adds in link only in title and more text of the post. As it’s not good to add link in whole content. But if you have featured image in that post then that featured image will also be link to post. For featured image check this http://catchthemes.com/blog/videos-blog/video-series-adding-featured-image-wordpress-postpage/

    in reply to: How to modify citation style? #64762
    Sakin
    Keymaster

    Looks like you are talking about blockquote background. In pro version there are color options for various elements but nor for HTML tag like bloxkquote. For that you can edit the color code in the following css as per your need and then add it in “Appearance => Customize => Theme Options => Custom CSS” box:

    #content blockquote {
        background-color: #000;
        color: #fff;
    }
    in reply to: Theme Check Warnings #64761
    Sakin
    Keymaster

    @Panayot: Thanks for the theme check but that is only for free theme. Also you have fixed most of it in our latest version. We follow guideline properly and many comes new.

    1. screen-reader-text class has been added which is only useful for accessibility
    2. missing text domain has been fixed which is only useful for translation
    3. Screenshot size is just recommendation and we are using recommended size 880×660
    4. Now, there is only one text domain use. This is just info for translation. Theme should generally use only one text domain

    in reply to: customize Category archive page #64760
    Sakin
    Keymaster

    @Florence: For detail customization like this, you need to post in your site URL so that I can check in and suggest you css.

    1. That page take the category title followed by Category Archives: . So, if you want to edit the title then edit the category name. But if you want to edit “Category Archives:” then you need to build child theme. For child theme, refer to http://catchthemes.com/blog/create-child-theme-wordpress/ and then copy archive.php file to your child theme and edit that.

    To remove the border in that title, you can add the following css in “Appearance => Theme Options => Custom CSS” box:
    .page-header { border: none; }

    2. Archive and search are the default widget if there is no widget in the sidebar. So, go to “Appearance => Widgets” and drag and drop widgets as per your need in your sidebar which will replace the default widgets.

    3. Sorry I don’t get it what you mean. Title of the post is always above the content of the post.

    4. To hide entry meta, you can add the following css in “Appearance => Theme Options => Custom CSS” box:
    .entry-meta { display: none; }

    in reply to: Getting an error message in customize screen #64759
    Sakin
    Keymaster

    @Patrick: Please update theme to latest version. We updated all our Premium/Pro theme yesterday to make it WordPress 4.3 compatible.

    No so sure about your issue. So, first update the theme and check in. Also clear your cache after you update it.

    in reply to: ERROR msg in theme #64758
    Sakin
    Keymaster

    @knudkp: Please update theme to latest version. We updates all our Premium/Pro theme yesterday to make it WordPress 4.3 compatible.

    in reply to: Excerpt length #64419
    Sakin
    Keymaster

    @margarita: It should be like that. Have you customize the code directly in parent Catch Responsive theme. How was your front page content added? Can you check the settings after you activate the child theme. As when you activate the child it, it treats your theme as new theme and then you need to set few settings again. Like assign custom menu, widgets and all.

    For plugin, you need to search at http://wordpress.org/plugins/

    in reply to: Primary Menu not showing any items in mobile view #64389
    Sakin
    Keymaster

    @AirOnSkin: I see that you have customize the site and remove code from footer.php. Please revert back the codes in footer.php file and then you will be able to get mobile menu back.

    in reply to: Feature Request for editor-style.css #64388
    Sakin
    Keymaster

    @Robertf: ok we will remove that in next version update. Thanks for reporting.

    in reply to: Header right sidebar #64387
    Sakin
    Keymaster

    @Phil: First go to “Appearance => Widgets” and add in Text widget is “Header Right Sidebar” and then add in your telephone number and email.

    To reduce, send me your site URL and let me know by how much you want to reduce it.

Viewing 20 posts - 2,601 through 2,620 (of 14,509 total)