Text inside a comment box on the form...

User 187934 Photo


Senior Advisor
20,190 posts
Online Now

I'll check another form to make sure there's not something else as my form is pretty simple.
I can't hear what I'm looking at.
It's easy to overlook something you're not looking for.

This is a site I built for my work.(RSD)
http://esmansgreenhouse.com
This is a site I built for use in my job.(HTML Editor)
https://pestlogbook.com
This is my personal site used for testing and as an easy way to share photos.(RLM imported to RSD)
https://ericrohloff.com
User 2154666 Photo


Registered User
15 posts

Yea, I don't understand it. It is as if the form is totally ignoring the font size of 14px. and color also. I don't get it.
User 187934 Photo


Senior Advisor
20,190 posts
Online Now

Stuart: look for this and change the part in bold.

/*Form Elements. This rule is common to all elements (inputs/selects) in fb-large Mode*/
#docContainer.fb-large input[type="text"], #docContainer.fb-large input[type="password"], #docContainer.fb-large input[type="email"], #docContainer.fb-large input[type="number"], #docContainer.fb-large input[type="date"], #docContainer.fb-large input[type="url"], #docContainer.fb-large textarea, #docContainer.fb-large input[type="file"], #docContainer.fb-large input[type="tel"] {
-moz-border-bottom-colors: none;
-moz-border-image: none;
-moz-border-left-colors: none;
-moz-border-right-colors: none;
-moz-border-top-colors: none;
border-color: #AAADB2 #DCDFE7 #DCDFE7;
border-radius: 3px 3px 3px 3px;
border-right: 1px solid #DCDFE7;
border-style: solid;
border-width: 1px;
color: #666666;
font: 12px Helvetica,Arial,Sans-serif;
max-width: 100%;
width: 99%;
}
I can't hear what I'm looking at.
It's easy to overlook something you're not looking for.

This is a site I built for my work.(RSD)
http://esmansgreenhouse.com
This is a site I built for use in my job.(HTML Editor)
https://pestlogbook.com
This is my personal site used for testing and as an easy way to share photos.(RLM imported to RSD)
https://ericrohloff.com
User 309869 Photo


Registered User
8 posts

This is an old thread, and I have the same problem.. Looking to make input font darker and larger.. I tried the aforementioned and it doesn't work. So, is this thread still applicable? Thanks!
User 2147626 Photo


Ambassador
2,958 posts

Well, the info appears to be a little off, but still the right idea. You need to edit the default.css file as stated above.
For TEXT FIELD boxes, look for and edit these lines :
/* Rule for the input-boxes */
#docContainer .fb-input-box input {
color: #000;
font: normal 12px Georgia, arial;
background: url(../images/fb_bg_input.png);

}


For TEXT AREA boxes, look for and edit these lines:
/* Rule for the text area box */
#docContainer .fb-textarea textarea {
height: 140px;
color: #000;
font: normal 12px Georgia, arial;
background: url(../images/fb_bg_input.png);

}


Be aware that as you modify these lines OUTSIDE of the WFB, everytime you change your form and export it, your changes will be overwritten. Save them in another file so that you can easily go back and add the changes again.

And if you don't mind, can you post back and let us know if this works for you. May help another user. Thanks.
Graphics for the web, email, blogs and more!
-------------------------------------
https://sadduck.com
User 187934 Photo


Senior Advisor
20,190 posts
Online Now

This will do all the inputs. You can test it by adding it to a html element.
<style>#docContainer input[type="text"], #docContainer input[type="password"], #docContainer input[type="email"], #docContainer input[type="number"], #docContainer input[type="date"], #docContainer input[type="url"], #docContainer input[type="tel"], #docContainer textarea {
font-size: 18px;
font-weight: bold;
}
</style>
I can't hear what I'm looking at.
It's easy to overlook something you're not looking for.

This is a site I built for my work.(RSD)
http://esmansgreenhouse.com
This is a site I built for use in my job.(HTML Editor)
https://pestlogbook.com
This is my personal site used for testing and as an easy way to share photos.(RLM imported to RSD)
https://ericrohloff.com
User 2147626 Photo


Ambassador
2,958 posts

Ah, that's the easy way! Wait a minute, I'm for that!! :D
Graphics for the web, email, blogs and more!
-------------------------------------
https://sadduck.com

Have something to add? We’d love to hear it!
You must have an account to participate. Please Sign In Here, then join the conversation.