Page 1 of 1

CSS for the titles of the fields

Posted: 07 May 2014
by Katerina
Hi Dimitry,

Is it possible to change the CSS of the titles of the form fields to be different than the text?

For example: Full Name Katerina

The Full name I want it to be bold but not the value (Katerina in that case)


Thanks

Re: CSS for the titles of the fields

Posted: 12 May 2014
by Dmitry Kozlov
Sure, please, assign CSS-class to your field e.g. 'highlighted-title'. And put the following definition to CSS-editor of Forms Designer:

Code: Select all

.highlighted-title .fd_title {
  font-weight: bold;
}

Re: CSS for the titles of the fields

Posted: 12 May 2014
by Katerina
Thank you very much, it worked :)

Re: CSS for the titles of the fields

Posted: 23 Sep 2016
by wdeffner
Hi, I would like to set it up in the opposite way. I want the value to be displayed in bold.


Thank you, Wolfgang

Re: CSS for the titles of the fields

Posted: 26 Sep 2016
by YuriyMedvedev
Try this one.

.fd_title + .fd_control{

font-weight: bold;}