Ebd_link hover color from blue

Hi there

I am using Email before download. This plugin generates a download link. On my website the link is red and hover turns it blue. Since the link is on a blue background i would like to have hover turn it to white

How can I do this? If I am not mistaken, the link has a class “ebd_link”

Hello @bakrona,

Thanks for writing to us.

I checked your given page URL, unfortunately, I can’t find any button with the class name “ebd_link”. It seems that you are talking about the “Form” submit button.

Ti change the button background colour please add this custom CSS under X–>Theme Option -->CSS

input.wpcf7-form-control.wpcf7-submit {
    background: #ffffff;
    border-color: #ffffff;
    color: #000000;
}

To change the background colour on the button hover.

input.wpcf7-form-control.wpcf7-submit:hover {
    color: #fff;
    border-color: #dd1002;
    background-color: #d92b2f;
}

Please feel free to change the colour code of “background” and “color” attributes as per your design.

The purpose of providing the custom CSS to show you how to add CSS code to your site. Writing custom CSS is outside the scope of our theme support. If you need more customization, you need to learn CSS and learn how to use the browser’s element inspector.

Hope it helps you.
Thanks

sorry for not being clear. It is actually after that you submit the information in cf7 that the link gets available. please see attached picture

so below the form you see the red link. if you hover it turns blue but i want it to turn white

Hi Bak,

To make the link turn to white while hovering, please add the code below in your X > Theme Options > CSS.

.ebd_link:hover {
   color: #ffffff;
}

Please note that custom CSS code is outside the scope of our support. Issues that might arise from the use of custom CSS code and further enhancements should be directed to a third-party developer or you can avail One where we can answer questions outside of the features of our theme.

Hope that helps.

Thank you.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.