DW Starter Template - Basic - Multi column - issue with links
It's been a while since I put a website together, so I hope I'm explaining this well. I found the code below in the DW Starter Template called Basic - Single Page css coding.
ul li a {
color: #FFFFFF;
text-decoration: none;
}
ul li:hover a {
color: #2C9AB7;
In the template I'm using, however, (called Basic - Multi column), I am not finding the code for links. If you select the Basic - Multi column template from Starter Templates, you can access the file called multiColumnTemplate.css. In "Live" view, you can drag your cursor over the menu items, and as you hover, the text turns from white to gray. I assumed the code was already prepared for linking since this is a template. However, when selecting one of the menu items in the gray bar called secondary header in order to assign a link, the default "hover" from white to gray breaks and the text becomes blue and underlined like old school HTML links. It's like there's no css coding for the a, hover, etc. Or at least I can't find it. Can anyone tell me if I'm missing something? Or tell me what code I should insert to make these links work right? Also, when I say I'm assigning the link in the Properties Box, all I'm doing is highlighting one of the menu items and selecting an .html file from my site folder. So once the link is assigned there, the menu item (in the gray secondary header bar) turns blue and underlined. Any input appreciated!
PS-Here are some of the areas where I'm looking for the anchor coding:
.secondary_header {
width: 100%;
padding-top: 20px;
padding-bottom: 20px;
background-color: #B3B3B3;
clear: left;
}
.container .secondary_header ul {
margin-top: 0%;
margin-right: auto;
margin-bottom: 0px;
margin-left: auto;
padding-top: 0px;
padding-right: 0px;
padding-bottom: 15px;
padding-left: 0px;
width: 100%;
}
.secondary_header ul li {
list-style: none;
float: left;
margin-right: auto;
margin-top: 0px;
font-family: "Source Sans Pro";
font-weight: normal;
color: #FFFFFF;
letter-spacing: 1px;
margin-left: auto;
text-align: center;
width: 16%;
transition: all 0.3s linear;
}
.secondary_header ul li:hover {
color: #717070;
cursor: pointer;
