Avatar of aej1973
aej1973
 asked on

css active menu to be highlighted...

Hello, I am working on the HTML/css code shown below. When I select a menu I would like the underline color to stay different till I select the next menu item. How can I do this?

/****CSS for the top menu***/
.underlinemenu{
font-weight: bold;
width: 100%;
}
 
.underlinemenu ul{
padding: 16px 0 7px 0; /*6px should equal top padding of "ul li a" below, 7px should equal bottom padding + bottom border of "ul li a" below*/
margin: 0;
text-align: center; //set value to "left", "center", or "right"*/
}
 
.underlinemenu ul li{
display: inline;
}
 
.underlinemenu ul li a{
color: #494949;
padding: 6px 3px 4px 3px; /*top padding is 6px, bottom padding is 4px*/
margin-right: 20px; /*spacing between each menu link*/
text-decoration: none;
border-bottom: 3px solid gray; /*bottom border is 3px*/
}
 
.underlinemenu ul li a:hover, .underlinemenu ul li a.selected {
border-bottom-color:#f9a63f ;
}



/*****End CSS Menu ***/

Open in new window


<div class="underlinemenu">
<ul>
<li><a href="companyInfo.php">Company </a></li>
<li><a href="branchInfo.php">Branch </a></li>
<li><a href="branch_store.php">Store</a></li>
</ul>
</div>

Open in new window


Thanks for the help.

A
HTMLCSS

Avatar of undefined
Last Comment
aej1973

8/22/2022 - Mon
ASKER CERTIFIED SOLUTION
Steve Bink

THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
GET A PERSONALIZED SOLUTION
Ask your own question & get feedback from real experts
Find out why thousands trust the EE community with their toughest problems.
SOLUTION
SSupreme

THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
GET A PERSONALIZED SOLUTION
Ask your own question & get feedback from real experts
Find out why thousands trust the EE community with their toughest problems.
aej1973

ASKER
Thank you.
Experts Exchange has (a) saved my job multiple times, (b) saved me hours, days, and even weeks of work, and often (c) makes me look like a superhero! This place is MAGIC!
Walt Forbes