Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #230832
    kabbott
    Participant

    Hello I using the Clean Enterprise Theme.

    The “Title” of each page is by default surrounded by a “black band/box”. It think that it is called custom-header (but I am not sure). The padding around the txt is very large.

    1) I would like to reduce the padding around the “title” text
    2) I would like to know how the change the color of the “box” around the text

    http://portland.daxpy.com/wordpress/products-and-services/

    #230850
    Skandha
    Participant

    @kabbott: Hello there,
    Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    /* To reduce the padding around title text and change the color of the box around the text */
    .custom-header-content {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
    .custom-header {
    	padding: 0;
    }
    .custom-header-content .entry-title {
        color: #000;
    }
    body:not(.no-header-media-text) .custom-header::after {
        background-color: #fff;
    }

    Let me know if this works out!
    Kind Regards,
    Skandha

    #230885
    kabbott
    Participant

    Thanks much,

    With some slight tweaks, this works perfectly!

    Cheers,
    Kirk

    #230940
    Skandha
    Participant

    @kabbott: Hello Kirk, I hope I was able to resolve your issue. If it’s not too much trouble, I have a quick request: could you please leave an honest review?
    https://wordpress.org/support/theme/clean-enterprise/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 I can do to help, don’t hesitate to let me know. Have a good day! 🙂

    Kind Regards,
    Skandha

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Changing the size/padding of the custom-header’ is closed to new replies.