Viewing 3 replies - 1 through 3 (of 3 total)
  • Have you got a link to your site?

    Thread Starter jc17

    (@jc17)

    Hi mate,

    The link is here

    I have 40 events that are the same layout.

    I want the logos to be apart instead of on top of each other, I’m sure you’ll see what I mean.

    Thanks

    Jon

    Hello,

    You need to change your CSS. The “Display” element is set to block. Remove “display” or change it to something like inline.

    Currently:

    img {
        border: 0;
        display: block;
    }

    Change to:

    img {
        border: 0;
        display: inline;
    }

    Or:

    img {
        border: 0;
    }

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Event team logo position’ is closed to new replies.