Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #30860
    roberto
    Guest

    I deleted the site title text and used the tool to insert a logo, but white bar remains and crowds the logo. Have a look: https://www.puregrain.com/pg-2020-presite/

    Thanks for your help, eager to move on!

    #30861
    support
    Guest

    Hi Roberto, thank you for your question!

    The white line that appears in the header is a static style in the Resolve theme and unfortunately it cannot be changed with any of the available controls in the Customizer.  However, you can utilize the custom CSS option to target that element specifically and make the necessary design changes.

    That line element in the header has some margins applied to it, and there are a couple solutions you could use to get rid of it.  The first option is to prevent the element from rendering on the page entirely and doing this will adjust the positioning of the elements on your page.  Here is a snippet that will hide the line altogether:

    .header .line-lg {
        display: none;
    }

    The other method is to make the color of the line to transparent, which will still hide it, but preserve the currently spacing your have for your page content.

    .header .line-lg {
        border-color: transparent;
    }

    I hope those snippets help you achieve the design you want and please let us know if there is anything else that we can do to assist you!

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘How to delete the white bar above where the site title goes in Resolve?’ is closed to new replies.