Viewing 7 replies - 1 through 7 (of 7 total)
  • if you are simply trying to place the yellow banner over the right end of the large red banner you could just use css to position: absolute and then position it where you want to.

    Thread Starter finox831

    (@finox831)

    thanks for the reply, I’m a total css noob and I have no idea how to do it. I heard you have type out a bunch of code to be able to make the yellow banner show on top of the red one so I really wouldn’t know how to even execute this or where to place it.

    change you img tag to what follows so that the css can target it specifically.

    <img id="newsletter-banner" alt="" src="https://eplreport.com/wp-content/uploads/2011/08/newsletter5.jpg">

    Then add the following two rules to the bottom of your stylesheet.

    you may have to play with the numbers but i think that should be pretty close.

    #newsletter-banner{
    position: absolute;
    top: 243px;
    left: 492px;
    z-index: 99999;
    }
    #logo-content{position:relative}

    Thread Starter finox831

    (@finox831)

    thanks dude check it out: https://www.eplreport.com it worked!!! now one last thing! how do i make it so it redirects to this url? https://eepurl.com/e7f8c

    ok all you need to do know is wrap that img tag with an a tag

    <a href="https://eepurl.com/e7f8c"><img ... /></a>

    Hope that is what you needed.

    Thread Starter finox831

    (@finox831)

    damn it worked! thank you so muchhh! can’t state it enough!

    do you know how I can center the adsense ad in the header? it’s all the way to the left and it doesn’t look good. If not it’s okay since you’ve helped me out a lot already!

    Glad I could help

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘How to move my Ad on top of my banner?’ is closed to new replies.