Reply To: Creating a transparent menu on the header logo

Home Forums Support Creating a transparent menu on the header logo Reply To: Creating a transparent menu on the header logo

Home Forums Support Creating a transparent menu on the header logo Reply To: Creating a transparent menu on the header logo

#76090
Tom
Lead Developer
Lead Developer

In order to place HTML above images, you need to change the position to absolute.

Something like this may work:

@media screen and (min-width: 769px) {
      .inside-header {
            position: relative;
      }

      .main-navigation {
            position: absolute;
            bottom: 5px;
            right: 5px;
      }
}

Make sure the navigation is set to float right.

Let me know 🙂