Hi, I have installed a plugin which creates it’s own default home page - it should be full width without a sidebar - all I get are sidebars.
The link shows you screenshots of what it should look like and what I am getting.
Hi, I have installed a plugin which creates it’s own default home page - it should be full width without a sidebar - all I get are sidebars.
The link shows you screenshots of what it should look like and what I am getting.
Hi,
Lets tweak it using css code.
Here, I am gonna using the page-id(automatically generated when you create a page) for the Deals page. So, the css code to remove the sidebar in the deals page is:
.page-id-155 #primary {
width: 100%;
}
.page-id-155 #secondary {
display: none;
}
Just put the css code above using custom css plugin. Hope it help
Hello Awan, I appreciate you coming to the rescue still not showing full width page as per screenshot
Hi,
please change this code:
.page-id-155 #primary {
width: 100%;
}
to:
.page-template-wide_page #primary {
width: 100%;
}