Customizing "Post" to look like a "page"

Hey There!

One) So im having a hard time making my posts full width and without any container. I basically want all my posts to look exactly like a page with the template “Blank - No container | Header, Footer”.

I have used some custom CCS based off of other topics within the support forum but there is still space on ether side and at the top and bottom of the post.

Screen shot of space:

Custom Global CCS:

/fullwidth the posts page/
.single-post .x-container.offset {
margin: 0;
width: 100%;
max-width: none;
}

/pushed the content on top of the page/
.single-post .entry-content {margin-top: 0;}

/hide the posts title/
.single-post .entry-header {display: none;}

.single .entry-featured {
display:none;
}
.single-post .x-container.max.width.offset {
max-width: 100%;
width: 100%;
}

.single-post.x-boxed-layout-active .entry-wrap {
padding: 0;
border: none;
}

.single-post .x-comments-area {
padding-left: 30px;
padding-right: 30px;

.single-post.fullwidth .x-container.max.width.main {
max-width: initial;
width: 100%;
}

Two) I want to remove all the tags and categories present on all the post pages:

thank you!

-C

Hi @lifeinthecave

Thanks for writing in! Could you please try adding the following CSS rules into your X -> Theme Options -> CSS area and see if that helps.

.single-post .entry-wrap {
    padding: 0;
}
.single-post .x-container.width {
    width: 100%;
}
.single-post .entry-footer.cf {
    display: none;
}

Hope that helps.

Hi @mldarshana, I also had a missing } this worked wonderfully!

thank you!

Glad to hear that. :slight_smile:

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.