Ad Code Issue

jasgor9

New Member
Messages
40
Reaction score
0
Points
0
I have the ads for the corperate package before the content on my site. The site sort of half-loads and sits there for a second or two while the ad loads. Then the content shows.

How can i show the content before the ads AND without an iframe?




(the only reason i don't like an iframe is because it is not transparent and there is a border around it. If someone can fix that, then an iframe is fine.)
 

bonzo meier

Member
Messages
47
Reaction score
0
Points
6
it depends on how your site is coded. if you use div´s, tittat is right: you can go like
<div>your content</div>
<div>your ad code</div>

the iframe solution would be
<iframe style="background-color: transparent; border: none">
, but make sure the document you load into the iframe has <body style="background-color: transparent">, too...

hope this helps,
peace, bonzo
 
Top