Hi guys,
Can anyone explain to me why my footer menu text is white in my editor
…but almost invisible when I visit via a browser?
Hi guys,
Can anyone explain to me why my footer menu text is white in my editor
…but almost invisible when I visit via a browser?
hii, @houssamalissa
Paste this code on the top of theme.scss file.
a {
color: white !important;
}
Thank You.
Please add the following code at the bottom of your assets/theme.css file.
.site-footer__linklist a {
color: #fff !important;
}
Hope this works.
Thanks!
hello @houssamalissa
please Go to Online Store->Theme->Edit code then go to assets/theme.css ->paste below code at the bottom of the file.
.site-footer__linklist a {
color: #fff !important;
}
Thanks both!!
Also, something that I’m not sure was there before - there are these little lines under a couple of the menus. Any idea how I can get rid of those?
hello @houssamalissa
please Go to Online Store->Theme->Edit code then go to assets/theme.css ->paste below code at the bottom of the file.
.site-footer .grid__item::after {
opacity: unset;
}
But I fixed that by changing opacity to 0 - so thanks!