Site logo

Archived topic

Centrering Comments Section

5 replies · Started by Simon on February 28, 2021

Viewing posts 1–6 of 6

Hi Guys,

Recently centralised the contents column but the comments section is still aligned to the left. Could I centralise this too so it lines up?

Thank you :)

Hi there,

to keep it centre aligned when your post content is then you would add this CSS:

@media (min-width: 1180px) {
  .comments-area {
    margin-left: 33%;
  }
}

Amazing David, thank you! :-)

You're welcome

Do you know how I could have the comment column centred for pages too? Many thanks in advance!

Hi Simon,

Try change this CSS:
@media (min-width: 1180px) {
  .comments-area {
    margin-left: 33%;
  }
}

To this:

@media (min-width: 1180px) {
  .comments-area {
    margin-left: 33%;
    margin-right: 33%
  }
}
This archived topic is closed to new replies.