Hi @therevisionist,
I hope you are well today and thank you for your question.
1. How can I designate my blogroll to have no sidebar by default, but have posts/pages have sidebars by default?
You can try achieving this by adding the following CSS code in the Custom CSS option of the latest version of Sparkling theme on the below path.
Admin Area -> Appearance -> Customize -> Sparkling Options -> Other -> Custom CSS
body.blog #secondary {
display: none;
}
body.blog .main-content-inner.col-sm-12.col-md-8 {
width: 100%;
}
2. How can I increase the width of the post/page? This is for the sidebar type of post/page.
You can use the below custom CSS code as described above to achieve this. Please change the value of 1270px in the below CSS code to whatever width you want to set for the post/page.
@media (min-width: 1200px){
body.single-post .container.main-content-area,
body.page .container.main-content-area {
width: 1270px;
}
}
3. How can I add the sparkling social buttons?
To create social icons follow the below steps :
1. Create a menu like any other menu in the admin area of your site under Appearance -> Menus .
2. Use the correct urls in the menu items, so for twitter it must be twitter.com for facebook it must be facebook.com. Otherwise URLs won’t get recognized and you will get squares without icons.
3. Set theme location for this menu as “Social Menu”
4. Use the Sparkling Social Widget in the sidebar
Best Regards,
Vinod Dalvi