Archived topic
Moving bullet points/indents
1 reply · Started by johnzoro on January 7, 2019
Viewing posts 1–2 of 2
On my positives section i want to put an indent in so it lines up with the other sections on my site
it looks ok on mobile version so i only need to do it on desktop version
any ideas?
hopefully i will only have to change the css and it should change on all posts
Hi there,
you can try this:
@media (min-width: 768px) {
.generate-sections-inside-container .lgc-column .inside-grid-column {
max-width: 600px;
}
.generate-sections-inside-container .lgc-column:first-child .inside-grid-column {
margin-left: auto;
}
.generate-sections-inside-container .lgc-column:nth-child(2) .inside-grid-column {
margin-right: auto;
}
}
It will apply to any 2 column sections you have though. Whilst keeping the background colors full width ( i assume this is required)
This archived topic is closed to new replies.