How to place Google ads side by side ?

3 replies
  • WEB DESIGN
  • |
My question is regarding placement of Google ads.

I want to place 300*250 rectangle ads side by side in my site.How do I go about it, I am not much into web designing so can't find a way to do it. Any help will be greatly appreciated.
#ads #google #place #side
  • Profile picture of the author dkirkland
    It really depends on the code around your ads. Can you post a link to the page so I can take a look (and describe where you want them to be)?

    Most likely it will be something like....

    <div style="margin:0 auto;">
    <div style="float:left;">GOOGLE AD #1</div>
    <div style="float:left;">GOOGLE AD #2</div>
    </div>
    {{ DiscussionBoard.errors[3459683].message }}
  • Profile picture of the author godwinsam
    Hi jack,

    I'll tell you the easier way, Just check the coding below.You can understand,

    .ad{
    display:block;
    float:right;
    margin:0 0 10px 10px;
    }

    or if you want ads on left side add this

    .ad{
    display:block;
    float:left;
    margin:0 10px 0 10px;
    }
    and in your source code
    <div class=”ad”>
    Your Google Script
    </div>
    {{ DiscussionBoard.errors[3459867].message }}
  • Profile picture of the author sridharg
    Hello there,
    you just need to go to Google and search term for Google ad formats,then you can see the images for adjustment of ads.You can choose the way you want.Or else, if you know programming ,you can place as you like.Hope it will work for you.
    {{ DiscussionBoard.errors[3459875].message }}

Trending Topics