1
0
-1

Hi,

I am using Download PDF Datalist Action Plugin to generate pdf . I need to change the css of the pdf , but til now I manged to change just the font of labels and not the font for values . I used the code below

.form-cell .label {font-size: 14px;}

Can somebody please help what code to use for changing font of values? Thanks!

    CommentAdd your comment...

    1 answer

    1.  
      1
      0
      -1

      Hi

      Maybe you could try the below CSS in "Configure Download PDF Action > Formatting (CSS)" property field.

      * {font-size: 20px !important;}
      1. genti

        Hi,

        It works, but I do not want to have same font for every element in pdf. I have text in header as well, and I want to have it different font size.

      2. Justin

        For the CSS, you can specify only to apply the style to an element type or class or id. 
        See how to do so here: https://www.w3schools.com/css/css_selectors.asp

      3. genti

        Hi, I know how css works, but I need to know what is the element name for form values


      4. Neta da Silva

        Did you try 

        .form-cell-value

      CommentAdd your comment...