Copy link to clipboard
Copied
Hello, I'm trying to create a menu much like the one here: Denver Internet Service | Webpass - Gigabit & High-Speed Internet (top left) but am having a hard time figuring it out. This will end up on the master page.
Copy link to clipboard
Copied
Ended up just writing the code...
If there is an easier way please let me know.
<style type="text/css">
select {
width: 10rem;
font-size: .9em;
font-weight: 900;
font-family: 'museo sans';
color: #253D86;
cursor: pointer;
padding: .5rem;
padding-right: 0rem;
background: white;
border: 1px solid #01A0D7;
}
</style>
<select name='state' onchange="location = this.value;">
<option value='1'>Choose Your State</option>
<option value="Home-PA.html">Pennsylvania</option>
<option value="Home-MD.html">Maryland</option>
<option value="Home-WV.html">West Virginia</option>
</select>
Copy link to clipboard
Copied
Marking your answer as correct until someone here comes up with a better solution for your question.
Thanks,
Preran