Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Are you also looking to do this yourself?
What do yo mean ?
(sorry, my english is limited, i’m speaking french)
I was posting this because the theme author forgot to put that selector in that list. I could obviously do it myself, but… If he updates his plugin, my changes will be lost.
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
I’ll mark this thread as “not a support question” then to avoid any further confusion
Hi grosbouff,
The input[type=”email”] selector will be included in the next update. Thanks!
— Anders
This is my code, please add
1. select with an arrow (/* -webkit-appearance: none; */)
2. input[type=”email”]
3. .widget-title{line-height:2;}
<style>
input[type="email"], select {
width: 100%;
padding: 14px 16px;
font-size: 0.85em;
border: none;
color: #333;
border: 2px solid #eee;
background: #fdfdfd;
border-radius: 3px;
-webkit-transition: background 0.2s ease-in-out;
-moz-transition: background 0.2s ease-in-out;
-ms-transition: background 0.2s ease-in-out;
-o-transition: background 0.2s ease-in-out;
transition: background 0.2s ease-in-out;
/* -webkit-appearance: none; */
}
.widget-title {
line-height: 2;
}
</style>
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support