banner fitting problem

pheyde

Member
banerprob.webp

how can i fix this? see, on the left side of the banner , the banner wont go on the left side and is showing some background . how can i fix this? i dont have any transparency on the left side yet it wont put the banner starting from the very left side
 
This code in your CSS is causing that margin:

Code:
#logo {
margin-left: 18px;
}

You can find and edit that CSS in your style, or override it:

Admin CP -> Appearance -> Templates -> EXTRA.css

Add this code:

Code:
#logo
{
	margin-left: 0px !important;
}
 
Top Bottom