XF 1.4 Why does this text show up below the ad?

Jens1986

Active member
As the tilte says, why does the text get pushed down below the Ad?

In extra.css:
Code:
.annonsestil {display:inline; float:right; width:250px;}

In ad_message_body:
Code:
<div class="annonsestil">Adsense-code</div>

Result:
Untitled-11.webp
 
You need to float the ads to the right.

Code:
<div style="min-height: 125px; margin-left: 8px; float: right">
    AdSense code
</div>
 
Looks like a style issue.
There are some weird classes there such as funbox and funboxwrapper.

Test in a default style.
If it works then you will need to contact the style designer.

Removing the overflow:hidden from the funbox class fixes it, but I don't know what effect that will have elsewhere.
 
Top Bottom