Tagged: fonts size
- This topic has 5 replies, 3 voices, and was last updated 5 years, 8 months ago by
jayzee.
- AuthorPosts
- April 20, 2016 at 06:46 #8531
AnonymousInactiveHello, I love the Tables plugin, is there any way to resize the fonts?
I have a lot of columns and would like to have more seen on the web pageAlso is there a way I could lock columns for scrolling purposes?
Thanks!Al
April 20, 2016 at 19:43 #8563
mila_supportMemberHello!
In order to resize the fonts use this code in CSS editor of Data Table plugin –`#supsystic-table-1 {
font-size: 14px;
}`where 1 – is ID of the table.
As for the second question – please describe it more detail.
July 13, 2017 at 19:33 #14898
jayzeeParticipantHello, how about if I would like to increase the font size of a certain data/field column only? How would I do that? Thanks!
July 14, 2017 at 20:53 #14926
mila_supportMemberHi @jayzee
Your issue was redirected to our developer. I will inform you about the progress.
July 20, 2017 at 12:55 #14946
mila_supportMemberHi @jayzee
In order to change font size for one column
1. Open the table you need to edit
2. Go to CSS tab and insert there#supsystic-table-169 td:nth-child(4) { font-size: 20px; }
http://prntscr.com/fxzb0f
here supsystic-table-169 – 169 is your table id
td:nth-child(4) – 4th column of the table
tr:nth-child(4) – 4th row of the table
for first column use – td:first-child
for first row use – tr:first-child
for last column use – td:last-child
for last row use – tr:last-child
3. Save changes
http://prntscr.com/fxzb8uJuly 20, 2017 at 13:55 #14949
jayzeeParticipantthanks!
- AuthorPosts
- You must be logged in to reply to this topic.