• Resolved brio39

    (@brio39)


    I changed the header to include our logo and a sponsors. My problem is I can’t seem to get the linked logo to show up on the right. I have tried a bunch of different css codes and can’t figure out what I’m doing wrong.

    I have a child theme and my site is https://www.robinsonandtoler.com/wp

    Any suggestions would be greatly appreciated!

Viewing 3 replies - 16 through 18 (of 18 total)
  • Thread Starter brio39

    (@brio39)

    I just noticed my Trusted Choice logo link is not working in Google Chrome. It was working fine yesterday. IE is still working. The only thing I have done is to add a slider plugin, but all my header code was unchanged. Do you have any suggestions as to why that would be?

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    To this style:

    .logo.sub {
     float: right;
    }

    Add this:

    position: relative;
    z-index: 1;

    Resulting in:

    .logo.sub {
     float: right;
     position: relative;
     z-index: 1;
    }

    Thread Starter brio39

    (@brio39)

    Worked like a charm! Thank you again!!!

Viewing 3 replies - 16 through 18 (of 18 total)
  • The topic ‘Position a logo to the right side of the header’ is closed to new replies.