• I am using your CSS styles for my wpdiehard shortcode. I have several tables and forms that vary in the number of columns and column widths. Can I have different CSS styles for each table? Can I vary the column width for each column?

Viewing 1 replies (of 1 total)
  • Plugin Author Passionate Programmer Peter

    (@peterschulznl)

    Hi,

    If you want to vary the column width, you probably have to remove the fixed class from the table first. After that, the simplest way is probably to use the ID of the header column. When you check the HTML of the table, you’ll see that each header column has an id (=column name). I never tried, but you should be able to change the width with this id like:
    #your_column { width: 200px; }

    Be aware that these table are responsive! If you change the width, your table might lose this feature.

    Best regards,
    Peter

Viewing 1 replies (of 1 total)
  • The topic ‘CSS coding for wpdiehard shortcode’ is closed to new replies.