Unable to enter Username or Password in Login Textboxs

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
8 years ago
Hi Guys

I was wondering if anybody has come across this issue ? I have setup a clean install of nopCommerce 3.60 and added a couple of plugins here: https://default.nopresponsive.com.

When I try to login I am not able to type in my username or password into the Textboxs, I have checked everything I can but I am still scratching my head as to why it is not possible, if anyone knows the answer please share.

Kind Regards
Ron Palmer
8 years ago
Hi Ron,

Textboxes work fine on other pages. Really weird. What exactly plugins have you added?
8 years ago
Actually it takes your input but value does not visible for some css or js issue.

After typing on email field you can check value using console.
$('.email').val()
8 years ago
Got it, font-size on input field is 0 in /Themes/DefaultClean/Content/css/styles.css .inputs{font-size:0}. Try

.inputs{font-size:10px}
8 years ago
Good spot.

font-size: 0; seems to be used quite a lot on the new default theme. I assume it's to avoid whitespace between inline block elements.
8 years ago
Hi Guys

Many thanks for your kind help, it is much appreciated, I have just managed to get it sorted out :).

I am injecting Bootstrap into the Theme, so I have just gone through it with firebug and removed the Bootstrap items that are used for those inputs, and it was two Bootstrap CSS items that were causing the issue, font:inherit and font-size:inherit which is of course is inheriting from the font-size:0.

But thanks very much for your kind input.
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.