Section Blog

How do I decrease these margins?

I would like it to look like this https://morsedigital.com.br/querocontratar/

Hi there

Hope you are having a good day and thank you for your question
Which margins? where? please provide little bit more details like screenshot and url to the page
Thanks!
Colorlib Support Team

oh, sorry
https://morsedigital.com.br/historias-morse/

I want to remove the margin in the stories section, but on the post page it does not
https://morsedigital.com.br/falei-empreendedor-entenderam-milionario/

Hello there,

I hope you are doing well today.

You can use the following CSS code to remove the margins by going to Appearance > Customize > Additional CSS and pasting it there.


/*Remove margin*/
.container, .container-fluid {
    padding-right: 0px;
    padding-left: 0px;
}

Best Regards,
Support

did not work for me

Hello there,

The issue here is the width of the post container but even if the width is set to 100% there will still be space left to the sides. Also, without the margin the other elements like the menu will shift.

This is the code to add it:


/*Container width*/
.container {
    width: 100%;
}

.col-sm-8 {
    width: 100%;
}

Best Regards,
Support