contacts

Get All 146 Premium WordPress Themes for Just $59.99
One-Time Payment: Unlimited Use Across Unlimited Domains, Plus Free Lifetime Updates! Learn more

fClub Theme: Make Content Full-Width

fClub Theme: Make Content Full-Width

By default our fClub theme displays content in two columns (1 column for actual content and right column for widget sidebar). In case you want to remove the sidebar and display content in full-width, it will require a few code changes. Here are all of the necessary steps:

1. Login to your Admin Panel

2. Navigate to Left Menu -> Appearance -> Theme Editor -> Open style.css for edit

3. Find the following code:

/* Large Resolution */
@media screen and (min-width: 800px) {
	
	#main-content,
	#main {
		float:left;
		margin:0 0 20px 2%;
		width:63%;
	}

and update it to (just the width value) to:

/* Large Resolution */
@media screen and (min-width: 800px) {
	
	#main-content,
	#main {
		float:left;
		margin:0 0 20px 2%;
		width:96%;
	}

4. Save changes

5. Admin Panel -> Left Menu -> Appearance -> Theme Editor -> Open page.php for edit

6. Delete the following code:

<?php get_sidebar(); ?>

7. Save changes

8. Admin Panel -> Left Menu -> Appearance -> Theme Editor -> Open single.php for edit

9. Delete the following code:

<?php get_sidebar(); ?>

10. Save changes