Can I make custom style changes in my component?

I mean changes like bigger font, different background color, position etc.

Yes, you can write your own CSS style in tab “Style wniosku” - the last tab on the left panel. Then you need to add name of this style in component properties in tab “Stylizacja”. My style changes label background color to red:

However, this change is connected to whole component (red area). If you want to change style of text in label, you can do this by refering to component id in “Style wniosku”:

#GesText1 {
    font-size: 30px;
}

or directly in component property:

image

1 Like