Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1414475

    AaronLentz
    Participant

    Hello,

    I’ve been able to make such great progress with my site using ACF plugin and Custom Post Types UI plugin. By using those two plugins I’ve been able create a new post type and custom fields to insert into that new custom post type. I have also began using Global Blocks plugin to have the content on the back-end easily displayed on the front-end.

    The only thing I have not been able to figure out is how to make a custom post type Post full width. It seems like there either some margin or padding left and right. I’d love any help in making this custom post type post full-width. Here is a link to the post I am talking about: http://www.athenscolumbus.com/messages/example/

    Thanks for your time and help!

    #1414757

    Thai
    Moderator

    Hi There,

    Please add the following CSS under Customizer > Custom > Global CSS:

    .single-messages .x-container.max.width.offset {
        max-width: 100%;
        width: 100%;
    }

    Also turn off the column container in your sections.

    Hope it helps 🙂

    #1415008

    AaronLentz
    Participant

    Hey Thai,

    Thanks so much that seemed to do the trick! I was wondering though, is there a css I could enter in that would keep me from manually turning off the column container in my section on my single-messages posts?

    #1415176

    Thai
    Moderator

    Hi There,

    Please update the previous CSS a bit:

    .single-messages .x-container.max.width {
        max-width: 100%;
        width: 100%;
    }

    Let us know how it goes!