Tagged: 

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #44275
    Adrian Perez Valerio
    Guest

    Hi everyone

    I want to have full width in my pages of the blog page. I tried to modified “Full width” instead of “container” in the settings of the Crio theme but it doesnt work. IF anyone can help me, please?

    The site shows a little blank space to the sides.

    #44290
    Brandon C
    Keymaster

    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 2 years, 5 months ago by Brandon C.
Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘How Do I Make My Blog Pages Full Width in Crio WordPress Theme?’ is closed to new replies.