• I’m a beginner and I am having a hard time trying to place an Adsense ad in a particular place on my website. The site is emtcertification.co I would like to place the ad on the right of the paragraph that’s title is “Welcome to EMT Certification!” I made line breaks in that paragraph to make room for the ad but I have no idea how to get it to show up between that paragraph and the sidebar. I would greatly appreciate the help!

Viewing 5 replies - 1 through 5 (of 5 total)
  • You need to use CSS to position the element (use a div) containing the ad – see “float” here:

    https://www.w3schools.com/css/css_float.asp

    You’ll need to assign a width to the div as well – depending on how wide the ad is – something like:
    HTML:

    <div id="myad">
    ad here
    </div>

    CSS:

    #myad {
      float: right;
      width: 250px;
    }

    Put that div in BEFORE the text – that way the text will go on the left side of it.

    Thread Starter joycarlaina

    (@joycarlaina)

    Sorry I’m really new at this… Where do i put the html part and where do i put the css part? Can I use the hook manager on Canvas?

    In general, the HTML goes in your content and the CSS in a CSS file – such as custom CSS. But you need to ask WooThemes for help with how to use the theme – as commercial themes aren’t supported here.

    Thread Starter joycarlaina

    (@joycarlaina)

    Amazing! Thanks for your help I would have never figured that out on my own.

    Thread Starter joycarlaina

    (@joycarlaina)

    WPyogi what if I wanted to float a picture next to text?

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Placing an Adsense ad in a particular spot’ is closed to new replies.