Does anyone know how to change the font size in a table on just one page?
I was attempting to use this but it didn’t render anything…
#kn-scene_2000 > div.kn-view.kn-info.clearfix > span > a {
font: bold 20px Arial;
text-decoration: none;
background-color: #EEEEEE;
color: #333333;
padding: 2px 6px 2px 6px;
border-top: 1px solid #CCCCCC;
border-right: 1px solid #333333;
border-bottom: 1px solid #333333;
border-left: 1px solid #CCCCCC;
border-radius: 5px;
}
Hi Kim,
#view_107 table {
font: bold 20px Arial;
text-decoration: none;
background-color: #EEEEEE;
color: #333333;
padding: 2px 6px 2px 6px;
border-top: 1px solid #CCCCCC;
border-right: 1px solid #333333;
border-bottom: 1px solid #333333;
border-left: 1px solid #CCCCCC;
border-radius: 5px;
}
This works perfectly!!! Thank you so much
1 Like
So if I wanted to apply this just to a details view or a list view, what else would I change in addition to the view number?
Details:
#view_107 .kn-details
List:
.kn-list#view_107
List content only:
#view_107 .kn-list-content
thank you! I so appreciate it