margin-right and margin-left break out of entry-content
-
Trying to use the grid but it currently breaks out of the entry-content div – spilling out by 15px each side.
The css that looks to be doing this is:
ghostkit-grid-gap-md {
margin-right: -15px;
margin-left: -15px;
}Turning those off means that the margins in the css below it get activated:
.ghostkit-grid {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-right: -15px;
margin-left: -15px;
}Can I turn those margins off without it effecting anything? I can’t see why they are there if you are using css grid.
Thanks.
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘margin-right and margin-left break out of entry-content’ is closed to new replies.