Posts: 4
Threads: 2
Joined: Jan 2015
The input field size for name, eMail, website, etc. are rendering just a tad too small on Firefox and are cutting off part of each character. It is especially bad with characters that extend downward such as "p" and "q". Any idea of how to resize these fields in order to avoid this in Firefox?
Posts: 2,904
Threads: 59
Joined: Jun 2010
Hi Gamoe,
In the stylesheet (/upload/css/default.css), you can adjust this part:
Code:
.cmtx_text_field {
height: 20px;
line-height: 20px;
}
Have
you completed
the interview?
Posts: 2,904
Threads: 59
Joined: Jun 2010
If changing those values doesn't fix it then you may need to modify the .cmtx_field styling.
Have
you completed
the interview?
Posts: 4
Threads: 2
Joined: Jan 2015
(17-Jan-2015, 12:27 PM)Steven Wrote: Hi Gamoe,
In the stylesheet (/upload/css/default.css), you can adjust this part:
Code:
.cmtx_text_field {
height: 20px;
line-height: 20px;
}
Thanks a bundle, Steven. I was able to change it using this first suggestion with no problem at all. Tested it on Firefox and Safari and it looks good on both now.
Posts: 17
Threads: 3
Joined: Jan 2017
(17-Jan-2015, 12:27 PM)Steven Wrote: Hi Gamoe,
In the stylesheet (/upload/css/default.css), you can adjust this part:
Code:
.cmtx_text_field {
height: 20px;
line-height: 20px;
}
Hello,
I have the same problem. If users enter name and EMail field they can not see the completely their name. Maybe 90% only. I tried to change the .css but I am too stupid.
Can s.o. please help me?
Thank you so much in advance
Posts: 17
Threads: 3
Joined: Jan 2017
Ups, another .css caused this. Now it worked.
But the honeypot field is shown. How can I hide it? This field is somewhat disturbing.
Posts: 2,904
Threads: 59
Joined: Jun 2010
Hi uran235, the instructions I gave earlier were for an older version of Commentics which is why you probably struggled.
In your version, the stylesheet is located at /frontend/view/default/stylesheet/stylesheet.css.
Try changing this part:
Code:
.cmtx_honeypot {
display: none;
}
To this:
Code:
input.cmtx_honeypot {
display: none !important;
}
Have
you completed
the interview?
Posts: 17
Threads: 3
Joined: Jan 2017
WOW ! Thank you so much.

It worked!