Michael Brenndoerfer
Michael Brenndoerfer

Reputation: 4066

Div not displayed in chrome without any reason

I have a very strange problem I never had before. Chrome doesn't display me a div. There's nothing special with the div. It just isn't displayed.

In IE and Firefox it works as desired, just in chrome not - really strange!

<div id="ad-wrapper">
        <div id="vertical-ad-1" class="box">fa</div>
        <div id="vertical-ad-2" class="box">fa</div>
</div>

the css:

#ad-wrapper {
width: 170px;
margin-top: 5px;
float: left;
margin-right: 3px;
}

#vertical-ad-1 {
width: 170px;
height: 610px;
margin-bottom: 5px;
}

#vertical-ad-2 {
width: 170px;
height: 610px;
}

Upvotes: 0

Views: 946

Answers (1)

Michael Brenndoerfer
Michael Brenndoerfer

Reputation: 4066

Oh it seems the the div named "ad-wrapper" was removed by ad-blocker. Renaming the div to ad-wrapperx solved the problem.

Upvotes: 1

Related Questions