Forum Replies Created

Viewing 20 posts - 421 through 440 (of 2,016 total)
  • Author
    Posts
  • in reply to: Slider bug #117372
    Pratik
    Participant

    Hi @Largo,

    If you can provide me with admin access, I will check the issue further. I will email you details soon.

    Regards,
    Pratik

    in reply to: Changing Color at top of Template. #117366
    Pratik
    Participant

    Hi @tattoo-tom,

    I am glad everything worked out. If you liked my support, it would be great if you could leave a review at https://wordpress.org/themes/rock-star/.

    Nave a nice day.

    Regards,
    Pratik

    in reply to: Mobile Menu is appeared at the top left, but is empty #117358
    Pratik
    Participant

    Hi @lillia,

    This is issue in child theme. What modifications have you made in child theme? You need to share your child theme with me and I can check it. Please use google drive or dropbox or other file sharing media.

    Regards,
    Pratik

    in reply to: Changing Color at top of Template. #117357
    Pratik
    Participant

    HI @tattoo-top,

    Try following code:

    
    .header-bg #masthead,
    #masthead {
         background-color: #1e73be;
    }
    

    Please remove previous code.

    Regards,
    Pratik

    in reply to: Edit Header #117356
    Pratik
    Participant

    Hi @millerdonkin,
    For increase logo size, try following code:

    
    .custom-logo {
        max-width: 250px;
    }
    

    You can increase the size of 250px even more if you want.

    For header image, I cannot understand what you mean, can ou explain with maybe a screen shot which space to reduce?

    For fixing header image, it is not possible. You need to hire customizer for that as it requires Javascript adnd CSS tweaks.

    Regard,
    Pratik

    in reply to: Mobile Menu is appeared at the top left, but is empty #117270
    Pratik
    Participant

    Hi @lilia,

    Can you check if the issue persists in parent theme too. Let me know.

    Regards,
    Pratik

    in reply to: Edit Header #117269
    Pratik
    Participant

    Hi Anne,

    Can you please post in your site url.

    Regards,
    Pratik

    in reply to: Changing Color at top of Template. #117268
    Pratik
    Participant

    Hi @tattoo-tom,
    Do you want it same as in other pages in homepage too, try adding following code in Appearance-> Customize-> Additional CSS box:

    
    #masthead {
        background-color: #000000;
    }
    

    Let me know how it goes.

    Regards,
    Pratik

    in reply to: Right sidebar in Catch Responsive Pro #117267
    Pratik
    Participant

    Hi @lekm_pro,

    Can you post in your site url.

    Regards,
    Pratik

    in reply to: Can't change table borders to none in custom CSS #117266
    Pratik
    Participant

    Hi @aphdescomcast-net,

    I cannot check the site if it is not live, there might be many plugin conflicts with CSS. Let me know once the site goes live and I will help you.

    Regards,
    Pratik

    Pratik
    Participant

    Hi @mmarvel54,
    Clean journal file is called form clean-journal-pro/inc/clean-journal-core.php line 260 code:
    {{{
    wp_enqueue_style( ‘clean-journal-style’, get_stylesheet_uri(), $clean_journal_deps, CLEAN_JOURNAL_THEME_VERSION );
    }}}

    the main CSS file in in theme folder’s root style.css.

    Best way to add your own CSS file is via child theme. The instructions for making child theme is here: http://catchthemes.com/blog/create-child-theme-wordpress/.

    Let me know if you need further help.

    Regards,
    Pratik

    in reply to: How to make secondary pages load below the banner #117261
    Pratik
    Participant

    Hi @catwingz,

    You want to view the banner first then scrol up to see banner. I do not think this will be possible, you can move the banner below the menu. If this is a viable option, let me know and I will provide you codes for that.

    Regards,
    Pratik

    in reply to: Slider bug #117260
    Pratik
    Participant

    Hi @Largo,

    It looks like a plugin conflict. Goto https://catchthemes.com/wordpress-tutorials/how-to-check-for-plugin-conflicts-with-our-themes/ to find the plugin with issue.

    Let me know how this goes and I will help you further.

    Regards,
    Pratik

    Pratik
    Participant

    Hi @smyo2017,

    Glad your issue was solved. Would you mind taking a few minutes to write a review for me please? I’d really love to know what you think of my support. Your feedback is deeply valued as it will help potential clients read about your experience and also help me improve. You can leave the review here: https://wordpress.org/support/theme/catch-base/reviews/#new-post

    Thank you so much for your help!

    Regards,
    Pratik

    in reply to: How to make main text darker #116886
    Pratik
    Participant

    Hi @bowessurnames,

    1. make the blue hyperlinks normal weight too (these are in the widgets and the ‘body input text’)
    The link has normal weight. I tried using normal weight and it did not make any difference You can try following code:
    Try following code:

    
    .widget a,
    a {
        font-weight: 700;
    }
    

    You can check options here: http://htmldog.com/references/css/properties/font-weight/ and set the desired one.

    2. change the default space between paragraphs, and between lists/blockquotes and the text before and after, from double space to 1.5 space.
    Try following code:

    
    body, 
    input, 
    textarea, 
    .widget-area {
        line-height: 1.42em;
    }
    

    You can increase/decrease 1.42 as 1.32, 1.22 and so on.

    This page shows the lists with too much white space before and after. It would also be good to indent the lists by five spaces. http://bowes.one-name.net/home/
    This is because the inner html elements have margin 30 px at bottom. We can reduce it by following code:

    
    #content .entry-content p,
    #content .entry-content ul{
        margin-bottom: 20px;
    }
    

    Reduce/increase margin bottom as per your liking.

    I can provide you fix for this, making all page/post titles uppercase/lowercase. Try following:

    
    .entry-title {
        text-transform: uppercase;
    }
    

    You can make it lowercase, or capitalize(make only first letter capital).

    Support is always free as long as it is related to theme. If you liked my support, it would be great if you could leave a good review at https://wordpress.org/support/theme/catch-box/reviews/#new-post.

    Also, you can upgrade to pro version, it has other features as well 🙂

    Let me know if there are any more issues.

    Regards,
    Pratik

    Pratik
    Participant

    Hi @silkroaddog,

    I have sent you email regarding email-support. Just email me there and we can address any issues.

    Let me know after you install and update child theme and I will provide you the code.

    Regards,
    Pratik

    in reply to: How to make main text darker #116793
    Pratik
    Participant

    Hi @bowessurnames,

    Try following codes instead.

    
    body, input, textarea {
        color: #000000;
    }
    
    #access ul.menu a, #access-secondary ul.menu a, #access-footer ul.menu a {
        color: #fff;
        font-weight: bold;
    }
    

    This will make text in body black. Second block will make link color white and bolder.

    Let me know if this solves your issue.

    Regards,
    Pratik

    Pratik
    Participant

    Hi @silkroaddog,

    This forum is premium support for pro themes. If you want email support, we can provide that too for pro theme users. What we do is use emails for sensitive information and use public forum for common issues, which might be helpful for other users as well.

    Yo do not need to buy that option. That option will let you access our email support and for free users.

    For buttons, can you post in your site url, and also HTML for custom button. I will check and see if that will be compatible or not.

    Shortcodes can be allowed. But for that, you will need to create a child theme and make a bit of modification. First, make a child theme following out tutorial here: http://catchthemes.com/blog/create-child-theme-wordpress/.

    Then, I will provide you code to allow shortcode.

    Let me know if you have issues while following above direction, and I will help you further.

    Regard,
    Pratik

    in reply to: Course Catalog #116730
    Pratik
    Participant

    Hi @silkroaddog,

    What you say is a valid feature. This is currently not available. We are going to discuss in the next team meet and add the feature. Right now, because of WordPress 4.8 release scheduled soon, we are bust with updates.

    Most probably, the feature will be added in our Essential Content Types plugin, adding Course as a post type with more features.

    For now, you will need to add it manually. We will work on this feature.

    Regards,
    Pratik

    in reply to: How to make main text darker #116729
    Pratik
    Participant

    Hi @bowessurnames,

    For color of main text, goto Appearance-> Customize-> Colors -> Basic Colors-> Header Text Color. Change it to any color you want..

    To make the smaller description text weightier, try following code in Appearance-> Customize-> Additional CSS box;

    
    #site-description {
        font-weight: bold;
    }
    

    The horizontal link text to be white (looks grey right now?). If they are already white they may just need to be bold for better contrast because the font is so thin
    I did not understand this part, can you explain with the hemp of screenshot maybe?

    Regards,
    Pratik

Viewing 20 posts - 421 through 440 (of 2,016 total)