Cool beans.
Well, since the theme will most likely not going to be updated any time soon, it is somewhat safe to edit the files directly. I’m not sure how comfortable you are with editing PHP or code in general but here goes.
In an FTP program, you will want to navigate to the wp-content/themes/shootingstar
folder. In there you will see a lot of files. Don’t freak out. The file you will make the change to is single.php
because this is what is used when viewing posts. The part that you will edit is towards the bottom of the file. Look for:
<?php get_sidebar(); ?>
What you will do is simply add //
in front of the get_sidebar
. So the new code will look like:
<?php //get_sidebar(); ?>
Save those changes. That’s it! The sidebar will be removed. Now the slightly tricky part, adding the CSS so it goes to full width. In the Customizer navigate to Additional CSS and use the following:
.single-post#wrapper #container #main-content #content {
width: 100%;
}
Let us know if this helps!