I am trying to place a link ion the Woo sitewide notice, which I have been able to do with inline code in the Woo settings.
(See code in private content.)
However, the default link stylescolcor is a dark purple, not what is needed against black. I tried to add it inline, but I can’t get it to work.
This is what I need for that particular piece of copy:
a:link”color:#e77d52; text-decoration: none;”
a:visited”color:#e77d52; text-decoration: none;”
a:hover”color:#ffffff; text-decoration: none;”
a:active”color:#e77d52; text-decoration: underline;”
And I have tried adding CSS to the quick css as:
p.demo_store {
}
But that doesn’t work either, though other things do suct as the plain text color, etc.
How can I style the links in the WooCommerce sitewide notice that is in the Woo settings? Or, is it not possible?
Thank you.
Hey blaircomm,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:
p.demo_store a:link { color:#e77d52; text-decoration: none;}
p.demo_store a:visited { color:#e77d52; text-decoration: none;}
p.demo_store a:hover { color:#ffffff; text-decoration: none;}
p.demo_store a:active { color:#e77d52; text-decoration: underline;}
If that does not work, please create a temporary admin login and post it here privately.
Best regards,
Yigit
This is now working. Thank you very much.
– Michael