How can I change mobile footer text color in Crave theme?

Solved

How can I change mobile footer text color in Crave theme?

ugneugne
Excursionist
12 0 4

Hello! I would like to ask on how to make the footer navigation text black only on mobile, while have the header text white on mobile. On the desktop version it should stay all dark. My theme is Crave and my website is www.aromeli.com

 

Thanks a lot for the help!!!

 

Accepted Solution (1)

stefansweb2020
Shopify Partner
134 10 5

This is an accepted solution.

@ugneugne You will need to edit your code and add custom CSS in section-footer.css file

@media screen and (max-width: 768px){
ul.footer-block__details-content li a {
    color: #000 !important;
}
}




banned

View solution in original post

Replies 2 (2)

stefansweb2020
Shopify Partner
134 10 5

This is an accepted solution.

@ugneugne You will need to edit your code and add custom CSS in section-footer.css file

@media screen and (max-width: 768px){
ul.footer-block__details-content li a {
    color: #000 !important;
}
}




banned
ugneugne
Excursionist
12 0 4

Thanks a lot! Works perfectly !