• Resolved WonderJunky

    (@futureproof)


    Hi all

    Im a bit confused about how to position my adsense leaderboard. Its currently at the top of my main content but its positioned to the left. I’d like it to be centered. How can I center it?

    https://supertv.jp/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hello

    Place the ad code within a division:
    <div class="leaderboard">code goes here</div>

    Then in the .css file add:
    .leaderboard {
    width: 728px;
    height: 90px;
    margin: 0 auto;
    }

    Hope it helps. :)`

    Hello

    Or if you want to use an inline style, just add it to the div as follows:

    <div style="width: 728px; height: 90px; margin: 0 auto;">code goes here</div>

    Thread Starter WonderJunky

    (@futureproof)

    Thanks all ?? Just went out and picked up a book on CSS. Its surprisingly simple once you understand the basics of the syntax. Hopefully my threads on here will be less “noobish” from now on.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Use inline styles to position adsense leaderboard?’ is closed to new replies.