• Hi I wanted to position my custom header logo to the right.
    I used the following code in the custom css windows:

    .custom-header {background-position-y: 70%;background-position-x: 98%;background-size:auto!important;}

    It works fine with chrome, but when i open the website in Firefox, the image is in the middle of the screen instead of the right corner.

    Link: https://www.remech.cologne/

    Can someone help me?

    Best regards

Viewing 1 replies (of 1 total)
  • Hey there Remech,

    It appears that background-position-x and background-position-y is not supported by Firefox, so you might want to try adding something like this:

    .custom-header {
      background-position: 98% center;
    }

    Hope this helps ??

    Best regards,
    Bojan

Viewing 1 replies (of 1 total)
  • The topic ‘Custom CSS does not work in Firefox but in Chrome’ is closed to new replies.