CSS for fields on registration/ login page
-
Hi,
I want to add CSS to the fields on login/registration form.
Here is what I wrote but didn’t work:.ur-frontend-form.ur-frontend-form–flat form .ur-form-row .ur-form-grid input[type=date], .ur-frontend-form.ur-frontend-form–flat form .ur-form-row .ur-form-grid input[type=email], .ur-frontend-form.ur-frontend-form–flat form .ur-form-row .ur-form-grid input[type=number], .ur-frontend-form.ur-frontend-form–flat form .ur-form-row .ur-form-grid input[type=password], .ur-frontend-form.ur-frontend-form–flat form .ur-form-row .ur-form-grid input[type=text], .ur-frontend-form.ur-frontend-form–flat form .ur-form-row .ur-form-grid input[type=url], .ur-frontend-form.ur-frontend-form–flat form .ur-form-row .ur-form-grid select, .ur-frontend-form.ur-frontend-form–flat form .ur-form-row .ur-form-grid textarea {
border-bottom: solid 1px white;
border-left: 0;
border-top: 0;
border-right: 0;
padding: 10px 15px;
background: rgba(0,0,0,0);
color: white;
margin-bottom: 10px;
height: 35px;
font-size: 13px;
}Also I want to make the margin 0 of the top one of the fields on tablet and mobile screen.
The page is here : https://kokoimalife.com/index.php/registration/
Here is what I wrote and didn’t work:
media=”only screen and (max-width: 768px)”
@media screen and (max-width: 768px)
.ur-frontend-form .ur-form-row .ur-form-grid {
margin-bottom: 0px;
}Thank you.
- The topic ‘CSS for fields on registration/ login page’ is closed to new replies.