Change GDPR color text

Support forumChange GDPR color text
faramarz_bahreinian Staff asked 4 years ago
Dear Nikola , i want to change the color of GDPR text in my website: (http://massageatyourhome.ca/)  background , text color , and mouse over  What is the CSS code for that? thanks.  Faramarz
2 Answers
Nikola Loncar Staff answered 4 years ago
Hi Faramarz, here are CSS code to improve styles on that page. Last one is for GDPR link:
.ea-bootstrap .disabled .block {
	background-color: #474D55;
}

.ea-bootstrap label, .ea-bootstrap h3, .ea-bootstrap small {
	color: #fff;
}

.ea-bootstrap .gdpr a {
	color: white;
}
add those to EA Settings > Customize > Custom Styles field Best regards, Nikola
faramarz_bahreinian Staff replied 4 years ago

Thanks.

great!

but when i mouse over on the text, its shown blue color, how can i change it?

faramarz_bahreinian Staff replied 4 years ago

can you give me my answer?

Nikola Loncar Staff answered 4 years ago
Hi Faramarz, here is updated styles with link color on hover. Please just replace previous styles with this one in settings. Also that overlay will look better :)
.ea-bootstrap .disabled .block {
	background-color: #474D55 !important;
}

.ea-bootstrap label, .ea-bootstrap h3, .ea-bootstrap small {
	color: #fff !important;
}

.ea-bootstrap .gdpr a {
	color: white;
}

.ea-bootstrap .gdpr a:hover {
	color: #ccc;
}

Best regards, Nikola
faramarz_bahreinian Staff replied 4 years ago

thanks. My problems completely solved.