I see the stylesheet I just can’t figure out where to adjust it to full width.
http://ktankphoto.com/giving-back/
You can choose Full Width template per page basis. Not applicable for blog post. If you want to remove sidebar site wide, go to “Appearance > Customize > CSS” and insert the following code
.content {
width: 100%;
padding-right: 0;
}
.sidebar {
display: none;
}
Thank you, but while that did make it slightly larger, it did not make it full width. Is there another setting I am missing?
This is how my custom css code now looks.
/*
Welcome to Custom CSS!
To learn how this works, see http://wp.me/PEmnE-Bt
*/
.content {
width: 100%;
padding-right: 0;
}
.sidebar {
display: none;
}
Okay scratch that, it’s suddenly working, I must’ve just simply needed a refresh.
Thank you!