To update where a link goes, find the href attribute and change the URL inside the quotes.
<a href="/new-program-page" style="color: white;">Election Security</a>
The link would now go to "/new-program-page" instead
To change what text appears on the link or button, edit the text between the opening <a> and closing </a> tags.
Colors are defined using hex codes (like #173852). You can update these to change the background color, text color, or button color.
<div style="background-color: #173852; padding: 10px; color: white;">Dark Blue Background</div>
<div style="background-color: #0a2240; padding: 10px; color: white;">Darker Blue Background</div>
<a href="/link" style="background-color: #D4AF37; color: #173852; padding: 8px 15px; display: inline-block; border-radius: 4px; text-decoration: none; font-weight: bold;">LEARN MORE</a>
<a href="/link" style="background-color: #0099cc; color: white; padding: 8px 15px; display: inline-block; border-radius: 4px; text-decoration: none; font-weight: bold;">LEARN MORE</a>
To make the menu wider or narrower, change the width value.
<div style="width: 300px; background-color: #f0f0f0; padding: 10px;">This menu is 300px wide</div>
<div style="width: 400px; background-color: #f0f0f0; padding: 10px;">This menu is 400px wide</div>
To add a new link to the menu, copy and paste an existing list item (<li>) and change the link and text.
<ul style="list-style: none; padding: 0; margin: 0;">
<li><a href="/link1">First Link</a></li>
<li><a href="/link2">Second Link</a></li>
</ul>
<ul style="list-style: none; padding: 0; margin: 0;">
<li><a href="/link1">First Link</a></li>
<li><a href="/link2">Second Link</a></li>
<li><a href="/new-link">New Added Link</a></li>
</ul>
Try editing the code below to see how your changes affect the menu's appearance. Make changes in the HTML tab and click "Preview Changes" to see the result.
Here are some common colors you might want to use in your menus:
| Color Name | Hex Code | Sample | Usage |
|---|---|---|---|
| GW Dark Blue | #173852 | Main menu background | |
| GW Gold | #D4AF37 | Buttons | |
| GW Blue | #0039A6 | Alternative background | |
| GW Buff | #EACA8F | Accent color | |
| Light Blue | #5bc0de | Special links | |
| White | #FFFFFF | Text color |