Hi Babale,
I think the problem lies in the transition css not in it turning white.
The link are set to transition: all 0.2s ease; if you remove this from your css style sheet you should be fine.
Took me awhile to figure out as I was also looking for a roll over color code.
Thanks
Josh
Hi Josh,
thanks for your help, I found my proble very strange considerign that I’m using the original CSS of the template… anyway, I found the part of the CSS that you are talking about
}
#section-home .entry-header {
position: relative;
z-index: 2;
width: 100%;
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
how should I modify it? Like this?
}
#section-home .entry-header {
position: relative;
z-index: 2;
width: 100%;
-webkit-transition: none;
-moz-transition: none;
-ms-transition: none;
-o-transition: none;
transition: none;
Should I delete or modify also this part?
}
#section-home .section {
display: block;
background: white;
padding: 10px;
border: 1px solid #E0E0E0;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transition: all 0.3s ease;
Thanks again
Babale
It’s a nonesense! I found the problem but it’s the strangest I ever seen! The problem was a plugin: “JotForm Feedback Button”. I deactivate it and my color is back. Now I only havo to find another plugin for catch my visitors feedback 🙁
You could always use the contact form 7 as a basic option.
Thanks
Josh