Quantcast
Channel: Xojo Programming Forum - Latest topics
Viewing all articles
Browse latest Browse all 3798

Xojo2024R2.1: WebListBox - how to set fonts in App header

$
0
0

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

Read full topic


Viewing all articles
Browse latest Browse all 3798

Trending Articles