• As the title says, I would like to place a skyscraper on the left side “outside” of the theme, how can i achieve this? Is there any plugin that can help me with this?

Viewing 4 replies - 1 through 4 (of 4 total)
  • The best method would depend on how your site is currently setup.

    If you have an element that reaches the area you want the skyscraper image to show (like a wrapper, or inner-wrapper), you could set the image as a background for that element.

    Otherwise, you could simply set the image element (or it’s containing element if you prefer that) to either absolute or relative position, and then shift it to the left.

    If you could provide a link to the page where you want to make this change, that would make it easier to help.

    Thread Starter Daniel Nielsen

    (@dabeni)

    Thank you for your respons, the site is located at https://www.mmamania.dk

    I’d suggest adding a DIV element before the wrapper DIV, with an image inside it. For example:

    <div id="skyscraper">
    	<img src="skyscraper.png">
    </div>

    Then for the CSS, use the following:

    #skyscraper {
    	position: fixed;
    	left: 0;
    	bottom: 0;
    	z-index: -1;
    }

    This will cause the skyscraper DIV to stay fixed in the bottom left corner of the site, behind the content, and it will stay in place as the user scrolls.

    Is that what you had in mind?

    Sorry for getting this older post up again.

    I need to ad a banner on the right and left side outside the content.

    How can I modify your solution that it works on both sides (different banners) AND with banner codes?

    I have an adserver (openx) and would like to put up the ads in there and let them show on my site.

    Thanks!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘How do i place a skyscraper "outside" my theme?’ is closed to new replies.