Header Line delete or change color and make super thin

How can I make the header line super thin / and change the color of the line to mach site color scheme / and how can I delete all together if I want.?

Thanks

Hi @rotation,

Thanks for reaching out.

That line is already thin (1px), it only appears thick due to the illusion of grey and black background.

To change the color, simply add this CSS as well with your preferred color.

.x-logobar {
    border-bottom: 1px solid yellow;
}

Thanks!

Ok thanks that worked - How can I change the footer line to match ?

Hello @rotation,

Please update the css code and use this:

.x-logobar {
    border-bottom: 1px solid yellow;
}

.x-colophon {
    border-color: yellow;
}

Please let us know how it goes.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.