1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

5$ to make my adsense display in IE (works in firefox)

Discussion in 'CSS' started by gigidawg, Jul 24, 2007.

  1. #1
    Hello,

    I have a css problem on my site.

    There is an adsense block inside my posts, that doesn't show up in IE. In firefox, it works fine. Also, the other adsense ads display in IE, it's just the one block that's wrapped inside the individual post that doesn't show up.

    If anyone thinks they can figure it out, how to fix it, i will pay you 5$ to your paypal.

    PM me for the site !
     
    gigidawg, Jul 24, 2007 IP
  2. argothiusz

    argothiusz Well-Known Member

    Messages:
    1,500
    Likes Received:
    79
    Best Answers:
    0
    Trophy Points:
    140
    #2
    what content management are you using?
     
    argothiusz, Jul 24, 2007 IP
  3. Angelosanto

    Angelosanto Peon

    Messages:
    14
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #3
    PM sent - message me back with the URL
     
    Angelosanto, Jul 24, 2007 IP
  4. gigidawg

    gigidawg Peon

    Messages:
    380
    Likes Received:
    11
    Best Answers:
    0
    Trophy Points:
    0
    #4
    I'm using wordpress.
    3 different people have requested the link so far. Whoever fixes it first will win. I will post the winner on here.

    Thanks !
     
    gigidawg, Jul 24, 2007 IP
  5. Angelosanto

    Angelosanto Peon

    Messages:
    14
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #5
    I can't find the problem - the adsense seems to be appearing in both IE and FF. I'm using IE7, are you sure its not just IE6 that doesn't work properly?
     
    Angelosanto, Jul 24, 2007 IP
  6. pruad

    pruad Peon

    Messages:
    71
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    0
    #6
    I'm using IE 6.0, FF and Opere. Everything looks equally fine.
     
    pruad, Jul 24, 2007 IP
  7. onlineravi

    onlineravi Banned

    Messages:
    437
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    0
    #7
    PM me the url I will check it.
     
    onlineravi, Jul 24, 2007 IP
  8. gigidawg

    gigidawg Peon

    Messages:
    380
    Likes Received:
    11
    Best Answers:
    0
    Trophy Points:
    0
    #8
    I have tried on multiple versions of IE, and only the sidebar ads show up. The 300x250 square in the middle of the post doesn't show up. I mean it's there, but it's just a white space.

    Is that the ad block you guys are saying you're seeing
     
    gigidawg, Jul 24, 2007 IP
  9. gigidawg

    gigidawg Peon

    Messages:
    380
    Likes Received:
    11
    Best Answers:
    0
    Trophy Points:
    0
    #9
    I've actually just figured out it works in IE7, but not in IE6. The ad block is there, it's just completely white for some reason.
     
    gigidawg, Jul 24, 2007 IP
  10. MeetHere

    MeetHere Prominent Member

    Messages:
    15,399
    Likes Received:
    994
    Best Answers:
    0
    Trophy Points:
    330
    #10
    If you have added 4 ad units - this will happen..
    One unit will remain empty randomly
     
    MeetHere, Jul 24, 2007 IP
  11. gigidawg

    gigidawg Peon

    Messages:
    380
    Likes Received:
    11
    Best Answers:
    0
    Trophy Points:
    0
    #11
    Meethere - that is not the problem in this case. There are only 2 ad units to begin with, and only one of them displays right. The problem only happens in IE6. Would you like me to PM you the url ?
     
    gigidawg, Jul 24, 2007 IP
  12. MeetHere

    MeetHere Prominent Member

    Messages:
    15,399
    Likes Received:
    994
    Best Answers:
    0
    Trophy Points:
    330
    #12
    Sorry, i dont have IE6 to test with.
     
    MeetHere, Jul 24, 2007 IP
  13. onlineravi

    onlineravi Banned

    Messages:
    437
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    0
    #13
    You are using this code in the page.php file
    Right

    <div class="main"><br />
    <table align="right">
    <tr>
    <td><script type="text/javascript"><!--
    google_ad_client = "######";
    google_ad_width = 300;
    google_ad_height = 250;
    google_ad_format = "300x250_as";
    google_ad_type = "text_image";
    //2007-02-23: style_post
    google_ad_channel = "3194910820";
    google_color_border = "FFFFFF";
    google_color_bg = "FFFFFF";
    google_color_link = "ff3366";
    google_color_text = "000000";
    google_color_url = "000000";
    //--></script>
    <script type="text/javascript"
      src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
    </script></td>
    </tr>
    </table>
    HTML:
    Instead of this use
    
    <div class="main"><div style="float: right; margin: 3px;">
    <script type="text/javascript"><!--
    google_ad_client = "#########";
    google_ad_width = 300;
    google_ad_height = 250;
    google_ad_format = "300x250_as";
    google_ad_type = "text_image";
    //2007-02-23: style_post
    google_ad_channel = "3194910820";
    google_ad_channel = "";
    //-->
    </script>
    <script type="text/javascript"
      src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
    </script>
    </div>
    HTML:
    and dont use the
    <br/> 
    HTML:
    after the
    <div class="main"><br />
    HTML:
    code

    Try this Hope that you get your HTML displayed in IE6
     
    onlineravi, Jul 24, 2007 IP
  14. gigidawg

    gigidawg Peon

    Messages:
    380
    Likes Received:
    11
    Best Answers:
    0
    Trophy Points:
    0
    #14
    Onlineravi - I have made those changes to my single.php file ( i assume that's the page.php file you're talking about - the page for the single post). No difference. The ad block is still white. I believe the problem is in my stylesheet.

    Check the site now, your changes are in effect, but you'll see there is no difference.

    Edit - actually, after changing that code, the site was even more broken. The color theme was different, and it was displaying even the text differently. I took them out to it's original state for now.
     
    gigidawg, Jul 24, 2007 IP
  15. onlineravi

    onlineravi Banned

    Messages:
    437
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    0
    #15
    You are using the css files twice .
    remove because its IE fix is written in the redwine Css
    http://styletips101.com/wp-content/themes/cordobo_green_park_09/style.css

    Don't delete it just comment it
    <!-- <link href="http://StyleTips101.com/wp-content/themes/cordobo_green_park_09/style.css" rel="stylesheet" media="all" type="text/css" /> --> and then see the result.
     
    onlineravi, Jul 24, 2007 IP
  16. gigidawg

    gigidawg Peon

    Messages:
    380
    Likes Received:
    11
    Best Answers:
    0
    Trophy Points:
    0
    #16
    I've commented it out, but still no difference. Check it out !
     
    gigidawg, Jul 24, 2007 IP
  17. varkey

    varkey Banned

    Messages:
    100
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #17
    It shows perfectly fine in IE7 and Firefox 2.
     
    varkey, Jul 24, 2007 IP
  18. gigidawg

    gigidawg Peon

    Messages:
    380
    Likes Received:
    11
    Best Answers:
    0
    Trophy Points:
    0
    #18
    The issue only occurs when using IE6.
     
    gigidawg, Jul 24, 2007 IP
  19. killerj

    killerj Active Member

    Messages:
    765
    Likes Received:
    34
    Best Answers:
    0
    Trophy Points:
    95
    #19
    I'll try my hand at this one as well , dropping you a PM now. .
     
    killerj, Jul 24, 2007 IP
  20. gigidawg

    gigidawg Peon

    Messages:
    380
    Likes Received:
    11
    Best Answers:
    0
    Trophy Points:
    0
    #20
    Sent you a PM ! Thanks for looking !
     
    gigidawg, Jul 24, 2007 IP