Black Friday sale! Get up to 25% off GP Premium! Learn more ➝

Creating a transparent menu on the header logo

Home Forums Support Creating a transparent menu on the header logo

Home Forums Support Creating a transparent menu on the header logo

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #76060
    Christian Zumbrunnen

    Demo Navigation

    I’d like to create a menu similar to the one shown above but am not sure how to go for it.

    Would it be best to adapt the css for the “Navigation Position” / “Float Right” or a Header Widget Menu?

    http://content.screencast.com/users/chzumbrunnen/folders/Snagit/media/757803c6-1a82-4970-96da-2efab6cce2be/2015-02-17_21-58-21.png

    Any practical ideas?

    #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 🙂

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.