I hope this is easy for experts who want to help me.
When I use this code in Opening event of the WebListBox control:
Me.style.value("font-family") = "Roboto Condensed, sans-serif"
Me.style.value("font-size") = "12px"
I get the font for header and row.
I want to use this font for all WebListBoxes so I thought I use App header with this:
div.dts tbody th, div.dts tbody td {
font-family: Roboto Condensed, sans-serif;
font-size: 12px;
}
but it only changes the font in rows.
What do I need to do to set header font in App header?
8 posts - 3 participants