today I've checked my sites and recognized that there is to much space after inmobi ads which shouldnt be there,
they have added 2 line brakes and invisible image (probably for cookies like admob does it) to their ad code what has caused that the sites with their ads don't look nice.
You have to edit their ad code to remove those line breaks.
this peace of code for the basic code will solve the problem:
they have added 2 line brakes and invisible image (probably for cookies like admob does it) to their ad code what has caused that the sites with their ads don't look nice.
You have to edit their ad code to remove those line breaks.
this peace of code for the basic code will solve the problem:
PHP Code:
$mkhoj_response = str_replace('<br/>', '', $mkhoj_response);
Comment