Apr 16, 2017 8:51 am
Hello,
I have a simple problem (I think, I hope:) and that is when I go to the login screen on my (test) website the height of the login and password fields is such that I cannot see what I am typing. This particularly occurs when I am using Safari and Mac, when I am using a Chrome the fileds are still not vey high but at least I can see the letters. The problem also occurs when I am using my iPad. Can anyone tell me how I can increase the height of these fields? It is probably a newby question but still any help is appreciated.
I have a screenshot attached which demonstrates the problem
2 Replies
Apr 17, 2017 7:37 pm
It comes from your theme CSS code, it conflicts with wpForo field style. Please use this CSS code:
#wpforo #wpforo-wrap .wpforo-login-content input[type="text"],
#wpforo #wpforo-wrap .wpforo-login-content input[type="password"],
#wpforo #wpforo-wrap .wpforo-login-content input[type="email"]{
min-height: 35px !important;
}
#wpforo #wpforo-wrap .wpforo-register-content input[type="text"],
#wpforo #wpforo-wrap .wpforo-register-content input[type="password"],
#wpforo #wpforo-wrap .wpforo-register-content input[type="email"]{
min-height: 35px !important;
}
Apr 18, 2017 7:27 pm
Thank you very much, that did the trick!