Under sidebar settings I can change the sidebar for Single Post Entries. This seems to affect both Portfoli & Blog single posts. The problem is, I want no sidebar globally on my Portfolio single posts, and I want right sidebar globally on my Blog single posts. How can I do this?
ps – I know I can turn off sidebar on individual portfolio posts but would like to “idiot-proof” it for the person who will be using the site…
Hey!
Try adding this to your custom CSS.
.single-portfolio main {
border-right: 0 none !important;
width: 100% !important;
}
.single-portfolio aside {
display: none !important;
}
Regards,
Elliott
Thanks, I think that will work. It would be great to have an option to treat the portfolio single posts independently.