About Us page is off centered on desktop and mobile view

Hello,

My ‘About Us’ page is off centered for the desktop view and not visible at all for the mobile view. How can I fix this issue?

URL: dawgminded.com

@dawgminded it’s because you have added this code to your CSS file:

@media only screen and (max-width: 749px)
{
.grid__item {
    margin-left: -220px;
}
}

.grid__item {
    margin-left: 420px;
}

For which page have you added this code specifically?

1 Like

I honestly cannot remember what that code was used to fix, I have had to fix so many things on the site that I cannot remember what that code was for specifically.

@dawgminded to specifically remove the margins for pages, you can add this code to your CSS file:

.template-page .grid__item {
    margin-left: 0 !important;
}
1 Like