Notifications
Clear all

wpForo 1.x.x [Solved] Height of login field and password field not big enough to show input text

3 Posts
2 Users
0 Likes
1,580 Views
nicoplat
Posts: 20
Topic starter
(@nicoplat)
Eminent Member
Joined: 7 years ago

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
Robert
Posts: 10503
Admin
(@robert)
Support Team
Joined: 8 years ago

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;
}
nicoplat
Posts: 20
Topic starter
(@nicoplat)
Eminent Member
Joined: 7 years ago

Thank you very much, that did the trick!