Skip to content
- Choosing a selection results in a full page refresh.
- Opens in a new window.
/* Make "Trade & Commercial" look like a button */
nav a[href*="trade-commercial"] {
background-color: #FFD700; /* Change to desired button color */
color: black; /* Change text color */
padding: 10px 15px;
border-radius: 5px;
border: 2px solid black;
font-weight: bold;
text-transform: uppercase;
transition: all 0.3s ease;
}
/* Add hover effect */
nav a[href*="trade-commercial"]:hover {
background-color: black;
color: white;
}