I was wondering is there a way in the CSS to make it where the side bar blocks will not have margins/padding. Would like an image to fill a block completely.

Thanks

Comments

VM’s picture

Category: task » support
Status: Active » Fixed

utilize firebug for firefox or chromes developer's tools and inspect already existing css. If the declaration isn't already set to 0px; you can do so;

Kisugi Ai’s picture

look in the style.css for

#sidebar-left .block, #sidebar-right .block
{
	padding-top: 8px;
	padding-right: 8px;
	padding-bottom: 5px;
	padding-left: 8px;
	margin-bottom: 5px;
	border-top-color: #ccc;
	border-right-color: #ccc;
	border-bottom-color: #ccc;
	border-left-color: #ccc;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
}

here you can remove the paddings and marins

or if you not want touch the style.css
create your own css file and use the "Include Custom Stylesheet" function under the apperance settings

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.