Hi @lyfstylevents,
Go to Appearance > Custom Design > CSS in your Dashboard, and paste the following code into the CSS Editor:
.page-template-showcase-php .recent-articles,
.page-template-showcase-php .more-articles {
display: none;
}
.page-template-showcase-php #tertiary {
margin: 0;
width: 100%;
}
.page-template-showcase-php #tertiary .widget {
float: left;
margin-right: 5%;
width: 45%;
}
This will hide the Recent Articles and More Articles sections. It'll also move the right sidebar 2 (currently Twitter and Facebook) into the center, with the widgets positioned into two columns side by side. I wasn't sure if/how you wanted those widgets to appear, so I experimented!
Let me know how this works for you. If you want to hide the Facebook and Twitter widget area, you can replace this:
.page-template-showcase-php .recent-articles,
.page-template-showcase-php .more-articles {
display: none;
}
in your CSS with this:
.page-template-showcase-php .recent-articles,
.page-template-showcase-php .more-articles,
.page-template-showcase-php #tertiary {
display: none;
}