Copy link to clipboard
Copied
Please help! i'm obviously no expert! but desperate to finish this website for my Dad asap!
simplest thing to do is to show you my problem... on the index page of kennybarnesgang.co.uk, I just need to match the colours of the menu buttons to the rest of the scheme.. ie; change to the burgundyish with white text...It was done in CS6, I have the latest 2017 also, but can't find an answer anywhere. Though I'm sure it's v easy? it's css code rather than html isn't it?
Thanks!
Copy link to clipboard
Copied
Got to line #99 of your document and change to the highlighted values
ul.nav a, ul.nav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
padding: 5px 5px 5px 15px;
display: block; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
text-decoration: none;
background-color: #7B3A76;
color: #FFF;
}
Copy link to clipboard
Copied
Thank You Ben!