Hello
What must i do to reduce the margin to 25px in quick css :
body .column-top-margin {
margin-top: 50px;
Thank you
I am not sure what your problem is.
Only thing i see is that you did not close the bracket.
Changing the margin is as easy as changing the value:
body .column-top-margin {
margin-top: 25px;
}