Hi, I installed an app to do blogs on, but there’s no option for full width on the body of text
. It has its own CSS sections such as JSON in the code editor. thanks
Hi, I installed an app to do blogs on, but there’s no option for full width on the body of text
Share your blog url
@Stagtis Please add the below line of CSS code at the end of your base.css file.
@media(min-width:990px){
body .article-template__content.page-width{
max-width:var(--page-width);
padding:0 9rem;
}
}
Add this code in your base.css file:
header.page-width.page-width--narrow.scroll-trigger.animate--fade-in,
.article-template__content.page-width.page-width--narrow.rte.scroll-trigger.animate--slide-in,
.article-template__social-sharing.page-width.page-width--narrow.scroll-trigger.animate--slide-in {
width: 90% !important;
max-width: 130rem !important;
padding: 0px !important;
}
MOBILE
PC
thanks so much everyone