full width home page

hello,

i am trying to make my home page full width (remove the page container, not only the sidebar) but i have not found a solution yet. Can anyone help me with that?

Thanks in advance!

Please post your website URL and I will try to write some custom CSS for it.
You can to create full width page that would cover the entire screen from one side to another or set some width limit?

thank you for your reply, my website url is dementia-community.gr . I want my homepage content to be full-width like the slider.

Add this code to Appearance - Theme Options - Other - Custom CSS and let me know if this is what you were looking for.

.home .post-inner-content {
  border: none;
}

@media (min-width: 1200px) {
  .home .container {
    width: 100%;
  }
}

.home .post-inner-content {
  padding: 0;
}

It worked! Thank you very much for your help!