Forum Replies Created

Viewing 20 posts - 741 through 760 (of 14,488 total)
  • Author
    Posts
  • Sakin
    Keymaster

    Hello ccarella,

    I just check on your site and don’t see any clock icon. But I see the date icon just below your post title. If you want to hide that then you can add the following CSS in “Appearance => Customize => Additional CSS” box:

    .post-meta .post-date { display: none; }

    Regards,
    Sakin

    in reply to: Change the background color of the header #237570
    Sakin
    Keymaster

    Hi Marc,

    Yes, you can simply add the followingCSS to hide the post navigation.

    .single-post #content nav {
        display: none;
    }

    Regards,
    Sakin

    in reply to: Change the background color of the header #237417
    Sakin
    Keymaster

    Hi Marc,

    When I look at your theme. Most of the edits you made in that child theme don’t need child theme after you upgrade to the Catch Box Pro theme. As the Color and are there in Customizer itself.

    All your custom functions and code in your child theme of Catch Box will be fine. First, upload the Catch Box Pro theme on your site. Then you need to change the following your child theme style.css.
    Replace Template: catch-box with Template: catch-box-pro

    Regards,
    Sakin

    in reply to: Change the background color of the header #237316
    Sakin
    Keymaster

    Hi Marc,

    1. For footer removal and all, Please use the Pro version as it has footer editor option in “Appearance => Customize => Theme Options => Footer Editor Options” from where you can either remove it or change it as per your need.

    2. That next nav is not showing due to color issue after you change the background to blue as the text as also in blue. So, can you add the following CSS in “Appearance => Customize => Additional CSS” to change the color of that post nav.

    #content nav a { color: #fff; }

    Regards,
    Sakin

    in reply to: Change the background color of the header #236999
    Sakin
    Keymaster

    Hello Marc,

    1. For details color, it’s better to use Catch Box Pro and then you will get the color option to change it as per your need. Bur for now, you can add the following CSS:

    #site-generator {
        background-color: #34678f;
        color: #fff;
    }
    #site-generator a {
        color: #ddd;
    }
    #site-generator a:hover,
    #site-generator a:focus {
        color: #fff;
    }

    2. There is no opton to change the footer text. This option is there only in Pro version. Please upgrade to Catch Box Pro and int you will get Footer Editor option at “Appearance => Customize => Theme Options => Footer Editor Options”.

    Regards,
    Sakin

    in reply to: Change the background color of the header #236922
    Sakin
    Keymaster

    Hello Marc,

    1. About the logo issue. You can following CSS that you need to remove the following CSS from “Appearance => Customize => Additional CSS”:

    #branding img {
    	height:250px;
    }

    2. About the border in the main part. I see that you have the following CSS in your child theme style.css. You can change that as per your need:

    #main {
        padding: 15px;
    }

    3. Footer: I don’t see your footer. So, I am confused with your question

    Regards,
    Sakin

    in reply to: How do I change the background color? #236719
    Sakin
    Keymaster

    Hi aiohfipj,

    Thanks for your compliment. We would really appreciate it if you could leave an honest review?
    https://wordpress.org/support/theme/fotografie-blog/reviews/#new-post
    Your review will help others know what to expect when they’re looking for the support I offer. Even a sentence or two would be hugely appreciated. Thanks, and if there’s anything else at all that we could help, don’t hesitate to let us know. Have a nice day! 🙂

    Kind Regards,
    Sakin

    in reply to: Ads just suddenly appeared on the header and left side panel #236718
    Sakin
    Keymaster

    Hello Diane,

    There is no such code about Google AdSense in the theme. It must be added via a plugin or script.
    I just replied to your support ticket. Please follow up on the support ticket.

    Regards,
    Sakin

    in reply to: Change the background color of the header #236671
    Sakin
    Keymaster

    Hi Marc,

    1. About our menu alignment with 1 or 2 pixels, I need to check in your site with the same settings. So, can you send me your site URL like in your screenshot?

    2. Yes, you can remove the top gap of header and browser by adding the following CSS either in “Appearance => Customize => Additional CSS” or your child theme style.css
    .site { margin-top: 0; }

    3. You will have option to change the colors in detail in Catch Box Pro theme. But if you want to manually change the color using Additional CSS or child theme style.css then edit the hexadecimal color code in the following CSS and add it:
    #access { background: #3d3d3d; }

    Also, for the menu border color, you edit the hexadecimal color code in the following CSS and add it:
    #access ul.menu li { border-color: #fff; }

    Regards,
    Sakin

    in reply to: Change the background color of the header #236552
    Sakin
    Keymaster

    Hi Marc,

    Yes, a Child theme is also a safe way to work on it. Then for all the CSS edits, you can simply add in your child theme style.css file

    Can you upload somewhere in your site or doc sharing site like dropbox and paste in URL here.

    Regards,
    Sakin

    in reply to: Change the background color of the header #236544
    Sakin
    Keymaster

    Hi Marc,

    Yes, you should never edit it from “Appearance => Editor” as all the edits that you make in that “Appeanace => Editor” will change the theme file itself. Also, all the edits made in the theme itself will be reverted back when you update the theme. So, you will lose all your edits. That is why we need to use it in “Appearance => Customize => Additional CSS”, this is a safe way to add CSS.

    Can you send me a screenshot image URL showing what you want?

    Regards,
    Sakin

    in reply to: Change the background color of the header #236485
    Sakin
    Keymaster

    Hello Marc,

    You need to post in “Appearance => Customize => Additional CSS” box. See this https://www.wpbeginner.com/plugins/how-to-easily-add-custom-css-to-your-wordpress-site/

    Regards,
    Sakin

    in reply to: Change the background color of the header #236438
    Sakin
    Keymaster

    Hi March,

    Where did you add that color code? Also, did you change the color code HEX value #fff to the desired color code you want? You can check out color codes at https://htmlcolorcodes.com/. Let me know where did you add it and I will check in your site.

    If you want to remove the that white border only then add the following CSS:

    #header-content {
        padding: 0;
        margin: 0;
    }

    Regards,
    Sakin

    in reply to: How do I change the background color? #236261
    Sakin
    Keymaster

    @aiohfipj: You can change the color code in the following CSS and then add it in “Appearance => Customize => Additional CSS” box:

    .post-archive .hentry .entry-container,
    .post-archive .hentry:nth-child(2n) .entry-container {
        background-color: #fff;
    }

    Regards,
    Sakin

    in reply to: Hero Content layout #236258
    Sakin
    Keymaster

    Hello Staf,

    You can make Full width for Hero Content when there no image by adding following css in “Appearance => Customize => Additional CSS” box:

    .hero-content-wrapper .entry-container.full-width { max-width: 100%; }

    Regards,
    Sakin

    in reply to: Adonis Pro #236257
    Sakin
    Keymaster

    Thanks 🙂

    in reply to: Adonis Pro #236172
    Sakin
    Keymaster

    Please check your email for details.

    in reply to: Change the background color of the header #236168
    Sakin
    Keymaster

    Hello Marc,

    You can change the background of the header section by changing the color code in the following css and then add it in your child theme style.css or in “Appearance => Customize => Additional CSS” box:

    #branding {
        background-color: #fff;
    }

    Regards,
    Sakin

    in reply to: Adonis Pro #236167
    Sakin
    Keymaster

    you can see details instruction at FAQ: https://catchthemes.com/frequently-asked-questions/. Check our the question “How to install Pro/Premium WordPress theme?”

    in reply to: code/scripts via functions #236039
    Sakin
    Keymaster

    Hi Steve,

    Thanks for informing me that your issues has been sorted out. We would really appreciate it if you could leave an honest review?
    https://wordpress.org/support/theme/adonis/reviews/#new-post
    Your review will help others know what to expect when they’re looking for the support I offer. Even a sentence or two would be hugely appreciated. Thanks, and if there’s anything else at all that we could help, don’t hesitate to let us know. Have a nice day! 🙂

    Kind Regards,
    Sakin

Viewing 20 posts - 741 through 760 (of 14,488 total)