Like in your other topic, it appears that you’ve attained the styling you are after.
Yes, but it’s still off in the mobile version.
Ah, so it is. You didn’t say anything about mobile in this topic 😛 I know, I should have inferred it. Add this to the customizer’s Additional CSS section:
@media screen and (max-width: 649px) {
.site-primary-footer-wrap a, .site-primary-footer-wrap h2 {
color: white;
}
}
thanks a ton! Just one last thing. Footer menu titles are bold in all pages. But on woocommerce pages, they tend to be not-bold.
how to make them consistent with rest of the pages?
I only checked one single product page, the rest ought to be similar. The footer titles are indeed bold on that page, but are slightly smaller, perhaps giving the impression of being less bold?
This should make them all the same larger size:
.woocommerce-page .widget .widget-title, .woocommerce-page .widget .widget-title-common, .woocommerce-page .widget>div h3 {
font-size: 1.4em;
}
If you find other inconsistent title styling somewhere, point me to the specific page.