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