How to make the single blog page full screen?

hi there,

i have a question for the blog single pages:

i made a template in the site builder (winzer), enabled the option that i can edit posts.
now i open the first post (its atm the only one) and iported the template i made. that worked.
i set all to fullscreen and disabled the sidebars and widgets.

now i have 2 problems:

the content is not fullscreen and i dont know how to make it fullscreen?
i dont want the name ob the blog post above my content.

any tipps how to archive this?
i added links and examples in the secure note.

thanks in advance for your help

cheers

Hello Harald,

Thanks for writing in!

The single post has a different layout with the pages. To resolve your issue, please add the following CSS code in the X > Theme Options > Global CSS (http://prntscr.com/evui3r)

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

We would loved to know if this has work for you. Thank you.

hi ruenel,

thanks that worked fine! :slight_smile:

one last question how can i disable/hide the post title on the single post page?

thanks again

ok i found how to remove the title in the forum:

/*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;}

now it worked…

thanks

Hello Harald,

Please add a class to the Body CSS Class(es) then add this code to the Global CSS:

.no-title .entry-header {
    display: none;
}

Then if you want to hide the title of other post, you just need to add the class no-title of the Body CSS Class(es) of those posts.

If you want to remove all the title of all posts, please use this code:

.single-post .entry-header {
    display: none;
}

Hope this helps.

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