Change Column Size - CSS

I’m trying to change the width of the column below. If I change the 30% to 10% in the browser it works but I just can’t seem to figure out how to make it permanent.

Hey Rob!

Can you try using the following CSS?

.fc-resource-area.fc-widget-header{
    width: 10% !important;
}
1 Like

ahhh…I was so close. What does the “important” do?

Because the style is on the html tag itself you need to use !important to override in the CSS.

2 Likes