Title: Custom Class
Last modified: September 1, 2016

---

# Custom Class

 *  [soulluciani01](https://wordpress.org/support/users/soulluciani01/)
 * (@soulluciani01)
 * [9 years, 9 months ago](https://wordpress.org/support/topic/custom-class-3/)
 * How do I add a custom class to the links I want to use with email before download?
   I want to change the color of the link and the link hover, right now they are
   set to the themes colors.
 * Also where does email before download store the submitted email addresses?
 * [https://wordpress.org/plugins/email-before-download/](https://wordpress.org/plugins/email-before-download/)

Viewing 3 replies - 1 through 3 (of 3 total)

 *  [dtynan](https://wordpress.org/support/users/dtynan/)
 * (@dtynan)
 * [9 years, 9 months ago](https://wordpress.org/support/topic/custom-class-3/#post-7715757)
 * You can use this css selector to get at the inline link that will appear after
   the user submits the form:
 *     ```
       a.icon-button.download-icon
       ```
   
 * So here’s an example of how you might use that to change the hover color that
   link:
 *     ```
       a.icon-button.download-icon:hover {
          color: red;
       }
       ```
   
 *  Thread Starter [soulluciani01](https://wordpress.org/support/users/soulluciani01/)
 * (@soulluciani01)
 * [9 years, 9 months ago](https://wordpress.org/support/topic/custom-class-3/#post-7715759)
 * I worked that out. Thanks for the reply tho!
 * I do have another question you might be able to help with.
 * On this page [http://85c.879.myftpupload.com/](http://85c.879.myftpupload.com/)
   the section that says our solutions are cross functional has some boxes with 
   text. I made the text a link but I can not figure out how to change the hover
   color on just that text without effecting the rest of the links on the site.
 * Any suggestions for me?
 *  [dtynan](https://wordpress.org/support/users/dtynan/)
 * (@dtynan)
 * [9 years, 9 months ago](https://wordpress.org/support/topic/custom-class-3/#post-7715760)
 * If you just do like an a:hover then you’re going to affect every link on the 
   page. To target a specific link you need to do a.classname:hover like I did above..
   but, obviously you need to change classname to an actual classname on that link.
 * Or, if you don’t have a classname on that link and can’t get one on there, then
   I suggest you read up on CSS3 Selectors. You should be able to target a specific
   link by using the right combination of selectors to get at it .. it takes some
   practice/learning to figure it out at first. Good luck

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Custom Class’ is closed to new replies.

 * ![](https://ps.w.org/email-before-download/assets/icon-256x256.jpg?rev=1813522)
 * [Email Before Download](https://wordpress.org/plugins/email-before-download/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/email-before-download/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/email-before-download/)
 * [Active Topics](https://wordpress.org/support/plugin/email-before-download/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/email-before-download/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/email-before-download/reviews/)

## Tags

 * [contacts](https://wordpress.org/support/topic-tag/contacts/)
 * [css](https://wordpress.org/support/topic-tag/css/)
 * [custom class](https://wordpress.org/support/topic-tag/custom-class/)

 * 3 replies
 * 2 participants
 * Last reply from: [dtynan](https://wordpress.org/support/users/dtynan/)
 * Last activity: [9 years, 9 months ago](https://wordpress.org/support/topic/custom-class-3/#post-7715760)
 * Status: not resolved