Full Width Page Still showing White Space where Side Bar Was

I Have used custom css to remove the sidebar on a Discovery Page I have created.

This can be viewed at: http://www.signametric.co.uk/discovery/

As you can see, the sidebar is gone and I am using the ‘full-width’ Page Attribute Template but it is not stretching the full content on the page.

Please help!!

Because you have replaced default classes when tried to make sidebar narrower and content wider on other pages.

But that’s not a big deal and you can add this code to Theme Options - Other - Custom CSS to fix this.

.page-template-full-width-page-php .main-content-inner {
    width: 100%;
}

HI there,

Thank for this but this has still not fixed it as you will see:

http://www.signametric.co.uk/discovery/

You have made a mistake by adding “.” instead of dash in your code.

Here is code you have used

.page-template-full-width-page.php .main-content-inner {
    width: 100%;
}

Here is my code that you actually need to use and please don’t modify anything. Just copy/paste and you are done.

.page-template-full-width-page-php .main-content-inner {
    width: 100%;
}

Hi, I’m having a similar problem just that it is happening in a custom page template I’ve created (based on page-fullwidth.php) for a custom post type called single-tipo-di-corso.php

I’ve also created a custom content template for it called content-tipodicorso.php so i can remove some stuff i don’t need.

Here is the page I’m talking about:

http://cdn01.mnemosine-elearning.it/sitodemo/?tipo-di-corso=corso-8

I hope you can help me and thanks for this awesome theme.

Solved doing it like this:


.single-tipo-di-corso .main-content-inner {
    width: 100%;
}


Thanks