Hi Adrian,
Thanks for reaching out and thanks for using Crio Pro WordPress theme!
It looks like you did set your pages to full width display but the container is applied to the actual blog template itself. I tried adding a bit of CSS and I think it may get you close to the results you desire. Just navigate to Appearance<<Customize<<CSS/JS editor and add this bit of CSS to expand your container width:
@media (min-width: 1200px) {
.container {
width: 1600px !important;
}
}
You might also want to adjust the padding of your overall blog entry content as well. For that use:
#main-wrapper.full-width .main {
padding: 0 0px !important;
}
.blog main article.post .entry-content {
padding: 0 0 0px !important;
width: 100%;
}
I hope this helps! Please reach back out if you need further assistance.
-
This reply was modified 3 years ago by Brandon C.