Hi I am trying to change select field option background color(blue to grey) on hover and want to change font style and padding to
select option, could you please help me on this
.
As I answered elsewhere, individual <option> elements don't have a :hover state. You won't be able to do that part.
Padding is exactly like it sounds:
.mktoForm select option {
padding: 10px;
}