Hi Guys,

I have a very simple but frustrating question. I would like to change the color of the webform writable field and give a simple border color. How can I do it?

Thanks,
G

Comments

greenwork’s picture

sites/all/themes/andromeda/css/form.css

form .form-text,
form .form-textarea{
  border:1px solid #000000;

Change the hex code for color.. the above example is a black boarder #000000

greenwork’s picture

Status: Active » Closed (fixed)
adampalk’s picture

Assigned: gerikkke » Unassigned
Priority: Major » Normal
Status: Closed (fixed) » Active

Do you happen to know if hyou can change the fonts and colors that the the webform uses?

Thanks

shadcn’s picture

Status: Active » Closed (fixed)

You can change fonts and colors with CSS, same principle as in #1

form .form-text,
form .form-textarea{
  color: #999;
  font-family: "Arial";
  font-size: 12px;
  font-weight" bold;
}