Join the Soledad Facebook Users Group here
for Share, assistance, discussion, and Updates related to Soledad WordPress Theme.

If you can't create a new ticket - you can send us an email via our contact form and we will get back to you.

Okay
  Public Ticket #3654026
required a Dropdwn base menu in top bar in mobile version
Closed

Comments

  •  1
    Ram Kumar started the conversation

    Hi,

    I need a dropdown base menu mobile version on the top menu. Please advise what should I use. I have tried with custom HTML to display dropdowns but have not been able to navigate to other websites.
    Please find the screenshot for your kind reference and please advise any option.

    Attached files:  Gmogli Top Menu.jpg

  •  2,540
    PenciDesign replied

    Hi,

    Please check the code I created below:

    <label for="website-select">Choose a website:</label>
    <select id="website-select" onchange="redirectToWebsite()">
        <option value="">--Select an option--</option>
        <option value="https://www.google.com">Google</option>
        <option value="https://www.facebook.com">Facebook</option>
        <option value="https://www.twitter.com">Twitter</option>
    </select>
    <script>
    function redirectToWebsite() {
        var select = document.getElementById('website-select');
        var url = select.value;
        if (url) {
            window.location.href = url;
        }
    }
    </script>
    

    Regards,
    PenciDesign.