That theme that you have Storefront is generating a CSS that causes it to take the width of the container 100%, you fix that with a bit of css, try this and you will see how it is fixed:
@media (min-width: 768px)
.storefront-full-width-content .content-area {
width: 450px;
float:none;
margin: auto;
}
If it still doesn’t change force it with !important, delete the previous one and try this one:
@media (min-width: 768px)
.storefront-full-width-content .content-area {
width: 450px !important;
float: none !important;
margin: auto !important;
}
Let me know if it worked for you.
Hope that helps, best regards.
-
This reply was modified 3 years ago by
neoset.
-
This reply was modified 3 years ago by
neoset.