XF 2.3 How to add logo to the right side of the header

Gophers12

Member
I have a logo in my header i would like to add another logo that i mean it a background grain.
logo1.png

I have done everything. i did try the header and nav style properties and it repeat. That logo i would like to align with my main logo.

logo.png


What the best way to do this.
 
You should be able to make it work by applying a background image to the css element parent to the logo.

I've just used the basic XF style here and just applied the logo as a background image to the <picture> tag the logo's <img> tag sits within.

1746292698562.webp

background-image: url("your logo background url");
background-position: center;
background-size: whatever size works in your example;

If you're using a custom style from a theme however, things may be formatted different but Inspect Element will always be helpful in finding what you need to change.
 
Back
Top Bottom