Move the sidebar down enough to fit a leaderboard ad

Kaiser

Well-known member
How can I move the siderbar below so I can add a leaderboard because right now I only have a 468x60 ad because when I put a leaderboard the sidebar dosent go down which caused the banner to overlap the sidebar.
 
Admin CP -> Appearance -> Templates -> sidebar.css

Add a margin to this code:

Code:
.sidebar
{
	@property "sidebar";
	font-size: 11px;
	float: right;
	width: 250px;
	@property "/sidebar";
}

like so:

Code:
.sidebar
{
	@property "sidebar";
	margin-top: 50px;
	font-size: 11px;
	float: right;
	width: 250px;
	@property "/sidebar";
}
 
Top Bottom