Problem's in placing multiple adsense codes

Discussion in 'HTML & Website Design' started by Phil, Nov 26, 2005.

  1. #1
    Decided to post here because I think it's a coding problem I'm having.
    Anyway, I'm expermenting with placing adsense ad units and link units on this page:
    http://nosaintshistory.com/1967stats.htm
    I'm trying to place a link unit to the right of the 2 images in the center, below the schedule using a table cell. IF I place it, the ad unit below it will not show.
    How can I place both units on the same page?
     
    Phil, Nov 26, 2005 IP
  2. Phil

    Phil Member

    Messages:
    53
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    41
    #2
    Sorry,
    The link is http://nosaintshistory.com/1967.htm.
    Sorry for the mistake.
     
    Phil, Nov 26, 2005 IP
  3. submitter999

    submitter999 Well-Known Member

    Messages:
    261
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    108
    #3
    is that a dynamic presentation or static??

    if static ,try this change to place adsense

    find this table
    <table summary="" align="center" cellpadding="10" cellspacing="10" width="75%" >
    <tr>
    <td align="center" valign="top"><img src="
    images/highlights/taylor_1967.jpg" width="162" height="195"
    border="0"><br>
     <font size="2"><i>Former Green Bay Great Jim
    Taylor</i></font></td>
    <td align="center"><img src="images/highlights/atkins_1967.jpg"
    width="170" height="211" alt="" border="0"><br>
    <i><font size="2">Hall of Famer Doug Atkins</font></i></td>
    
    </tr>
    </table>
    Code (markup):
    replace with the following code to place a ad on right
    <table summary="" align="center" cellpadding="10" cellspacing="10" width="75%" >
    <tr>
    <td align="center" valign="top"><img src="
    images/highlights/taylor_1967.jpg" width="162" height="195"
    border="0"><br>
     <font size="2"><i>Former Green Bay Great Jim
    Taylor</i></font></td>
    <td align="center"><img src="images/highlights/atkins_1967.jpg"
    width="170" height="211" alt="" border="0"><br>
    <i><font size="2">Hall of Famer Doug Atkins</font></i></td>
    <td>
    <!--your adsense begins here-->
    adcode
    <!--your adsense ends here-->
    </td>
    </tr>
    </table>
    Code (markup):
    it is not appearing becz you cannot place morethan 1 unit of 728x90 , so try different sizes... then you can
     
    submitter999, Nov 27, 2005 IP
  4. Phil

    Phil Member

    Messages:
    53
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    41
    #4
    I'm not trying to put 2 units of the same size. I'm trying to put an ad unit of 728x90 and a link unit of 160x90. It seems one will show and not the other, depending on which one is coming first in the page.
    It's almost like one javascript cancels out the other.

    I'm going back and add the code to the page like I'd like it.
    page again is at :http://nosaintshistory.com/1967.htm
     
    Phil, Nov 27, 2005 IP
  5. Phil

    Phil Member

    Messages:
    53
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    41
    #5
    OK, nevermind it's working now. I think I was leaving out a piece of code.
    But hey, thanks for the reply 999. I would have never gone back and looked otherwise!
     
    Phil, Nov 27, 2005 IP
  6. my44

    my44 Peon

    Messages:
    722
    Likes Received:
    24
    Best Answers:
    0
    Trophy Points:
    0
    #6
    For "better control" of the page, I usually put the ads script in a <td></td> tag. I've had similar experience with ads not appearing when I was really a newbie (a few months ago).

    Also, even if you do everything right, if Google can't find suitable ads, either PSAs or empty space will appear. For example, I use maximum 3 ads in most of my pages, I do notice occasionally that only 2 out of 3 ads appear.
     
    my44, Nov 30, 2005 IP