More than one logo on the header?

Hi, I need your help!
I have created an conference event (using Indico 3.2.4) and I am desperately trying to add 2 logos on the header/banner, one on the right and one the left of the title. How can I do that?

I tried to add a .conLogoBoxLeft and .conLogoBoxRight in a customized .css file and tried to call the logo directly from the (indico) image url path as well from another webpage, without any success. I have tried this because one logo can be uploaded for a conference, every time I upload another logo, the first one disappears.

Any suggestions/help is welcome :slight_smile:

Hi!

.confLogoBoxLeft and confLogoBoxRight are not defined in the HTML so that won’t work.
You could try setting the background property on a :before or :after element. For example (untested):

.confLogoBox::before {
   background: url(https://my-image);
}​

Hi,
thank you for your suggestion. That didn’t work in my .css file either but eventually I figure out that it was easier to customize the logo outside indico. I made a single logo/design containing all information I wanted into the header and upload that as a logo and adapt the .css file around this single “logo”.

1 Like