Thanks for using Ignite!
There is a “full-width” template in Ignite made exactly for this purpose. When you’re editing the Page for your e-book, you will see a Templates section on the right-side of the screen. Use the dropdown there to select the Full-width template, and the page will no longer display the sidebar.
I did that, but now the content is still staying over to the side and there is just a blank place where the sidebar was.
http://werefarfromnormal.com/buy-the-greek-yogurt-alfredo-sauce-cookbook
Okay I see, in the Custom CSS you’ve added, there is a property that is overriding the full-width template styling:
#main {
width: 57%;
}
To make the full-width styling override the above selector, add the following to the Custom CSS section in the customizer:
.page-template-full-width #main {
width: 85.186%;
}
Once added it should do the trick.
Perfect!! Thank you so much!