Forum Replies Created

Viewing 20 posts - 3,501 through 3,520 (of 4,903 total)
  • Author
    Posts
  • in reply to: Featured image slider #93158
    Mahesh
    Participant

    @zerolizer0: Please post in your site url.

    Regards,
    Mahesh

    in reply to: Fixed topics in the featured content. #93157
    Mahesh
    Participant

    @opublicerad-se: Thank you for your appreciation. And thank you for using Catch Base Pro.
    Have a nice day!

    Regards,
    Mahesh

    in reply to: How to change first page thubnail's size #93156
    Mahesh
    Participant

    @leonardo-martinez: You missed the trailing/closing curly brace (}) at the end. Please add it and it’ll resolve the issue.
    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Font Size and Post Cutomization #93154
    Mahesh
    Participant

    @alwilleford: Thank you for your appreciation.
    In the option that you can see No Featured Image in the braces, choosing this option will remove featured image. However, if you do have image in the content, it’ll show up.
    Excerpt is the WordPress core function and it allows only text and nothing else. I you have a plugin for showing subtitle, you can use it.
    Hope you understand.
    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Customize Panel is blank #93151
    Mahesh
    Participant

    @pabou: Please post in your site url.

    Regards,
    Mahesh

    in reply to: Featured Content for a standar page #93149
    Mahesh
    Participant

    @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
    Participant

    @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
    Participant

    @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
    Participant

    @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
    Participant

    @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
    Participant

    @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
    Participant

    @salamali: Please post in your site url.

    Regards,
    Mahesh

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

    @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
    Participant

    @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
    Participant

    @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
    Participant

    @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
    Participant

    @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
    Participant

    @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
    Participant

    @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
    Participant

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

    Regards,
    Mahesh

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