I’ve managed to make the last link in my header into a button, however, it’s also making every last item in the drawers red too. Below is the code I’ve used to far. Is there a way to make it so it’s just the ‘quote’ that is a button and not the drawer items?
.header .header__inline-menu .list-menu > li:last-child > a{
background: #d04649;
border-radius: 0px;
text-decoration: none !important;
padding-left: 30px;
padding-right: 30px;
color: #fff!important;
Hi @tailormade1 Add the below code where you have added your other custom css code.
a#HeaderMenu-quote {
background-color: red !important;
}
Result:
If you will unable to implement the same then I’m happy to do this for you, let me know. I can implement the code changes so that this will work well for you.
Hopefully it will help you. If yes then Please don’t forget hit Like and Mark it as solution!
Best Regards
Sahil
Use this code instead
a#HeaderMenu-quote {
background-color: #d04649;
}