Forum Replies Created

Viewing 20 posts - 3,501 through 3,520 (of 4,888 total)
  • Author
    Posts
  • in reply to: Featured Content for a standar page #93149
    Mahesh
    Member

    @salamali:
    Hi Sarah,

    So you haven’t add the page yet. Please add the page and let me know and I’ll provide you with CSS code to display Featured Content in that page only.

    Regards,
    Mahesh

    in reply to: Footer background color #93101
    Mahesh
    Member

    @rolandallen: Yes, there was a bug in default color. Thank you for letting us know. This will be fixed in the next update.
    Have a nice day!

    Regards,
    Mahesh

    in reply to: Featured Content for a standar page #93100
    Mahesh
    Member

    @salamali: Thanks. I checked your site and seems you have currently disabled the Featured Content. In which page do you want to show the featured content.
    Let me know so that I can help you further.

    Regards,
    Mahesh

    in reply to: Font Size and Post Cutomization #93080
    Mahesh
    Member

    @alwilleford: The reason is you are using excerpt in displaying blog posts. Using excerpt strips out all the html tags and styles and displays only plain text. But if you check the single page of the blog you’ll see the text with styles.
    So you’ll need to display full content instead of excerpt. For this, go to Dashboard=> Appearance=> Customize=> Theme Options=> Layout Options and select Show Full Content in Archive Content Layout.
    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Customize Panel is blank #93079
    Mahesh
    Member

    @pabou: I checked the theme in our server and customizer seems to be working fine. Are you using any plugins? I so, try disabling it and check if it resolves the issue.
    Let me know further.

    Regards,
    Mahesh

    in reply to: Footer background color #93078
    Mahesh
    Member

    @rolandallen: I checked the option in our server and is working fine. Please post in your site url, so I can check.
    Footer Menu Color option change color of footer menu only, not footer widgets or site-generator. For these, there is other option in Dashboard=> Appearance=> Customize=> Colors=> Site Color Options
    #Footer Background Color: Changes background color of site-generator (copyright text background)
    #Footer Background Sidebar Color: Changes background color of footer widget.
    Hope you understand.
    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Featured Content for a standar page #93075
    Mahesh
    Member

    @salamali: Please post in your site url.

    Regards,
    Mahesh

    in reply to: Sidebar on homepage only #93074
    Mahesh
    Member

    @brianmor: This is be done with Custom CSS. Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    .sidebar-primary {
        display: none;
    }
    
    body:not(.home) #main {
        width: 100%;
    }
    
    .home .sidebar-primary {
        display: block;
    }

    Hope this helps. Let me know if any problem. And please post in your site url.

    Regards,
    Mahesh

    in reply to: Site Title and Custom Promotion Header #93071
    Mahesh
    Member

    @alwilleford: Please use the following CSS for background-image in Promotion Headline:

    #promotion-message {
        background-image: url("your_image_url_1200X111");
        background-position: center center;
        background-repeat: no-repeat;
        max-width: 100%;
    }

    Hope this helps, let me know if any problem.
    Note: For best fit, use image with dimension 1200X111.

    Promotion headline button, allows you to put the desired url and link to it. If you mean to display the form instead of button, you’ll need further customization. I recommend you to hire a customizer.

    Regards,
    Mahesh

    in reply to: Mobile site now has border #93070
    Mahesh
    Member

    @fmck: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    @media screen and (max-width: 480px) {
        .site, 
        .no-sidebar-one-column .site {
            margin: 0 auto;
        	width: 100%;
        }
    }

    Regards,
    Mahesh

    in reply to: Adding "Terms and conditions"link on the footer #92996
    Mahesh
    Member

    @monicavilas: Upgrading from Free to Pro won’t cause any data loss. All data and setting will be automatically transferred. If you are using child theme, your codes won’t go in vain either. It will work in Pro as it work in Free version.
    Let me know if any confusion.

    Regards,
    Mahesh

    in reply to: Site Title and Custom Promotion Header #92995
    Mahesh
    Member

    @alwilleford: Adding Custom font can be done with Custom CSS. First you’ll need to upload Playlist Script font to your site. Upload it to the wp-content/uploads folder. Then go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    @font-face {
        font-family: 'Playlist Script';
        src: url('http://yoursite/wp-content/uploads/Playlist Script.otf');
    }
    /* Change site-title's font to Playlist Script */
    .site-title {
        font-family: 'Playlist Script';
    }

    Note: Please change the your src url in the above code to match your font file.

    Regards,
    Mahesh

    in reply to: size pictures Featured Page Grid Content #92976
    Mahesh
    Member

    @calmo16:
    1. For this you’ll need to create child theme. You can find more details on creating child theme HERE. Then add the code in the link below, in your child theme’s functions.php
    http://goo.gl/4atlZN
    2. This is only possible in Pro version. I recommend you to upgrade to Pro.
    3. It is recommended size, you can use any image with aspect ratio 4:3

    Regards,
    Mahesh

    in reply to: Hyperlink color change #92975
    Mahesh
    Member

    @scubafreak:
    Hi Dan,

    Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    a, 
    .widget-area .widget a {
        text-decoration: underline;
        color: #21759b;
    }

    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Upgrade to pro old sidebar #92974
    Mahesh
    Member

    @bobbim: Are you still having problem. Let me know so that I can help you.

    Regards,
    Mahesh

    in reply to: audio #92973
    Mahesh
    Member

    @hollyehrocketmail-com: Sorry, by changing theme to default I mean activate WordPress’s core theme Twenty Fourteen and check if the problem persist.
    I did checked you site and saw the problem in Mozilla.
    Let me know further.

    Regards,
    Mahesh

    in reply to: Upgrade to pro old sidebar #92955
    Mahesh
    Member

    @bobbim: Thank you for using Catch Responsive Pro. You have posted the issue in Catch Adaptive Pro’s thread.
    I checked your site, do you mean the Gallery that is at the bottom? This widget is put in the Footer Widget Area and is displaying fine. Let me know further.

    Regards,
    Mahesh

    in reply to: Site Title and Custom Promotion Header #92954
    Mahesh
    Member

    @alwilleford: What font do you want to use? Google fonts? If so, this can be done through Custom CSS. Let me know the font you want to use and I’ll provide you the CSS. Please post in your site url.
    Promotion area is for main Headlines or something, image can’t be added to this. If you do want image it this anyway, I recommend you to hire a customizer.

    Regards,
    Mahesh

    in reply to: audio #92953
    Mahesh
    Member

    @hollyehrocketmail-com: Please post in your site url. May be the loading problem is because of file. Try changing the theme to default and check, if the issue persists, this is not a theme issue. Let me know further.

    Regards,
    Mahesh

    in reply to: How to change first page thubnail's size #92952
    Mahesh
    Member

    @leonardo-martinez: Changing thumbnail will change size for all post’s thumbnail. For changing thumbnail, you’ll need to create a child theme first. You can find more details on creating child them HERE. Then in your child theme’s functions.php add the following codes:

    add_action( 'init', 'catchresponsive_child_custom_thumbnail_size' );
    function catchresponsive_child_custom_thumbnail_size() {
    	remove_image_size( 'catchresponsive-square', 200, 200, true ); // used in Archive Left/Right Ratio 1:1
    	add_image_size( 'catchresponsive-square', width, height, true ); // used in Archive Left/Right Ratio 16:9
    }

    Note: In the above code, Please change the X and Y to your desired Width and Height in px for 16:9 appect ratio
    Then after that use Regenerate Thumbnails to regenerate the thumbnails for existing images.
    https://wordpress.org/plugins/regenerate-thumbnails/
    Let me know if any problem.

    Regards,
    Mahesh

Viewing 20 posts - 3,501 through 3,520 (of 4,888 total)