Hi,
You want to remove the nine alpha unites div with a short code from a plugin?
This image http://support.bigamy.cz/ , has two parts. the top part is how you want your store page to look? or you want the store page to look like the bottom image with the blond girl?
So you want the sidebar to be removed?
First of all the nine alpha units div is what makes the theme responsive, so if you remove it, be aware of that.
Please show me a page with code or provide how you want page to look .
If you want no sidebar, this code will remove it, and expand to 100% so just add it to your /css/custom.css or to quick css located in replete > theme options > styling at the bottom of the page:
@media only screen and (min-width: 1140px){
#top .responsive .container .nine.units {
width: 100% !important;
}
#top .responsive .container .three.units {
display: none !important;
}}
@media only screen and (max-width: 989px) and (min-width: 768px){
#top .responsive .container .nine.units {
width: 100% !important;
}
#top .responsive .container .three.units {
display: none !important;
}}
#top .container .nine.units {
width: 100%;
}
#top .container .three.units {
display:none;
}
#top body .unit.alpha, #top body .units.alpha {
width: 100%;
}
Thanks,
Nick