How can I remove white space in Broadcast theme sections?

HEllo

I cannot seem to get rid of the white space highlight below:

I tried the following code without success :

#shopify-section-skintype-columns2 {
    margin-top: 0% !important;
}

My URL : https://www.ambigoose.com/pages/skin-type

Thank you so much

Jon

@JonX
Hi, Add this code to theme.scss or theme.css

.wrapper--columns{
margin-top:-30px !important;
}

Thank you.

@JonX

Please add the following code at the bottom of your assets/theme.css file.

.index-columns--skintype-columns2 {
    padding-top: 0px;
}

Hope this works.

Thanks!

@Zworthkey Unfortunately that did not work

@dmwwebartisan Unfortunately did not work

I tried that too without success :

.index-columns--skintype-columns2 {
    padding-top: 0px !important;
}

Hi, Add this code to theme.scss or theme.css

.index-columns {
padding-top:0px!important;
}

Thank You

@JonX

Try this.

.index-columns{
padding-top: 0px !important;
}

@Zworthkey Unfortunately not working

@dmwwebartisan Unfortunately not working

@JonX

Which file you are adding this code ?

@JonX

Try this.

.text-dark, .wrapper--columns {
    margin-top: -30px!important;
}

Thank You.

@dmwwebartisan Theme.css

@Zworthkey Still no!

hello @JonX can you please add ’ } ’ bracket after line number 857 in your theme.css file because it is missing see screenshot https://imgur.com/kg3IDKA

and then insert this code end of the theme.css file

#shopify-section-skintype-columns2 .index-columns.index-columns--skintype-columns2{
	padding-top: 0px !important;
}

@Kinjaldavra YOU ARE A STAR!!!

Thank you so much

@JonX