Header Background Image 2

Say, is it possible to add a background image in the header vs a solid color? This would be behind the logo pic. https://lincolnveteransparade.org.

Hi @rkassebaum,

Yes, that is possible by adding some custom CSS.

Please find this code that you have in the Global CSS:

.x-logobar-inner {
    padding-top: 25px;
    padding-bottom: 25px;
}

Then update it to:

.x-logobar-inner {
    background-image: url("URL_OF_THE_IMAGE");
    padding-top: 25px;
    padding-bottom: 25px;
}

https://www.w3schools.com/cssref/pr_background-image.asp

Hope this helps.

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