I have been through many forums and have not found anything. When I create a new page in wordpress not matter what type of page I get the sidebar on the left side until I switch it to “full width page.” I am pretty sure if I was able to change the default “default template” to “full width page” this problem would go away.
PICTURE
I have been through the plugins page over and over I just cannot seem to figure out how to change this. I have seen posted (not relating to MarketPress) when users said to add some bit of code to the stylesheet or similar. But, the post I have found regarding that were very specific to their post and issue.
EDIT:
Thanks, I found the answer here:
https://www.ads-software.com/support/topic/sidebar-removal-3?replies=11
.page-id-0 div#secondary {
display: none;
}
.page-id-0 .page-template-default #primary {
width: 100%;
}
.page-id-0 div#sidebar {
display: none;
}
.page-id-0 div#main-content {
width: 100%;
}