Site logo

Archived topic

Content not centered

1 reply · Started by Johanna on November 3, 2018

Viewing posts 1–2 of 2

It's like there's a sidebar on the right that is preventing the content from being centered.

I used Margin left for the infographic but I know that's not the right way o doing this.

https://imgur.com/a/OZ85WPW

Hi there,

You have this CSS added which is causing the problem:

@media (min-width: 1366px)
p {
    font-size: 16px!important;
    max-width: 80%;
    font-weight: 600;
}

Specifically the max-width: 80%; is the cause.

Looks like it's added a couple times as well. The other one doesn't have media query:

p {
    font-size: 14px!important;
    max-width: 80%;
    font-weight: 600;
}

Hope this helps!

This archived topic is closed to new replies.