eitanj
December 15, 2022, 11:04am
1
I want the colors of the menu in my footer to match my header, to be static white and red on hover. This is the code used for my header menu
a.header__menu-item.header__menu-item.list-menu__item.link.link–text.focus-inset:hover {
color: #D72638 ;
}
span.header__active-menu-item:hover {
color: #D72638 ;
}
summary.header__menu-item.list-menu__item.link.focus-inset:hover {
color: #D72638 ;
}
.list-menu__item {
color: #fff ;
}
Website: blankfuture.co
Password: helpme
Ujjaval
December 15, 2022, 11:08am
2
@eitanj
.footer-block.grid__item.footer-block--menu :hover {
color: red;
}
add above css in base.css file
Hello @eitanj
It’s GemPages support team and glad to support you today.
I would like to give you a solution to support you:
body .footer-block__details-content .list-menu__item--link:hover, body .copyright__content a:hover {
color: #D72638;
}
Hope my solution can work and support you!
Kind & Best regards!
GemPages Support Team.
Hello @eitanj ,
I would like to give you a solution to support you:
Go to Online Store-> Theme-> Edit code
Open your theme.liquid theme file
Paste the below code before :
<style>
.footer-block__details-content a {
color: #fff !important;
}
.footer-block__details-content a:hover {
color: #D72638 !important;
}
</style>
1 Like
eitanj
December 15, 2022, 11:20am
5
This one worked perfectly. Thanks!
eitanj
December 19, 2022, 3:46pm
6
hey! for both my header and my footer, when im on the page that the text links to, it shows as white with an underline. What can I do to change it to have no underline and be red (#D72638 )?
Ujjaval
December 19, 2022, 3:52pm
7
@eitanj
add below css into base.css file
ul.list-menu.list-menu--inline {
text-decoration-line: underline;
}
a.link.link--text.list-menu__item.list-menu__item--link {
text-decoration-line: underline;
}
eitanj
December 19, 2022, 5:00pm
8
that didnt work, it did the opposite by adding underlines and making them all white