Home Forums Theme support smaller margin (mobile – faircar) Reply To: smaller margin (mobile – faircar)

Hi,

I think the problem is the missing logo. You can try to add the following css code in WordPress admin -> Appearance -> Theme Options -> General -> Extra CSS Content:

@media only screen and (max-width: 479px) {
	#head_line {
		padding-top:0;
		margin-top:-40px;
	}
	#brand {
		display:none;
	}
}	

This should solve the problem.