• hi everyone!
    i have barkingdog theme
    and i cant get how to change header size and make it transparent
    i cheked style.css and didnt find the right line to change the size and padding options. i want to make it smaller.
    web is https://www.oneself.pro

    please help!)
    thanx in advance.

Viewing 1 replies (of 1 total)
  • Hello,
    Is this theme using a customizer element for the header settings? I don’t have access to the theme’s admin area to tell.
    If it is not, you want to use this CSS element in the style.css:

    .header-wrapper {
        text-align: center;
        width: 100%;
        position: fixed;
        z-index: 3;
        /* adjust the padding top and bottom to reduce the header's height */
        padding-top: 60px;
        padding-bottom: 25px;
        float: left;
        background: transparent;
    }

    Good luck.

Viewing 1 replies (of 1 total)
  • The topic ‘header resize’ is closed to new replies.