Last active
July 15, 2022 00:13
-
-
Save marklchaves/57fac9833a34c94aa54d0609a65b115c to your computer and use it in GitHub Desktop.
Use CSS to specifically target only link text color that's inside a Popup Maker popup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Popup content link | |
* | |
* Use this CSS if you don't want to change your theme's global | |
* link text color. | |
*/ | |
.pum-content a { | |
color: orange; /* Change this to the color you want. */ | |
} | |
/** | |
* New to CSS? Check out this guide first. | |
* | |
* https://docs.wppopupmaker.com/article/287-getting-started-with-custom-css | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment