Why my line got cut in IE ?

Discussion in 'HTML & Website Design' started by er1cw, Sep 23, 2006.

  1. #1
    Guys, my center divider between the advertisement and the upload form got cut in IE.

    You can view my website Here

    below is my code

    <table width="11" border="0" cellspacing="2" cellpadding="0" align="left">
    <caption></caption>
    <tr><td>
    <hr size="388" width="2">
    </td>
    </tr>
    </table>
     
    er1cw, Sep 23, 2006 IP
  2. Tekntoant

    Tekntoant Peon

    Messages:
    294
    Likes Received:
    8
    Best Answers:
    0
    Trophy Points:
    0
    #2
    I think your Google ads are covering up your divider. You could put a wrapper around your ads and give it a right margin of 1px. That should push the divider over. Make sure you zero out the body of your HTML body. These may have lead to the difference in location of your ads.

    Css

    Body
    {
    Padding: 0px;
    Margin: 0px;
    }

    I am a hit and miss kind of guy with css. I sort of poke around until I fixed the problem, so these tips may not work but I tried.
     
    Tekntoant, Sep 23, 2006 IP
  3. melol2

    melol2 Active Member

    Messages:
    511
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    80
    #3
    Just wondering, what did you use to make it rename uploaded files like if I uploaded hello.txt it would rename it hello_txt25 ?
     
    melol2, Sep 23, 2006 IP
  4. er1cw

    er1cw Peon

    Messages:
    114
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #4
    Thanks. I will give it a try now.

    I use str_replace to replace all invalid character "like symbols" to "_" and i also generate random number behind the file name to avoid duplication
     
    er1cw, Sep 23, 2006 IP
  5. melol2

    melol2 Active Member

    Messages:
    511
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    80
    #5
    Thats good. Because the way you have it now, if you didnt do that, someone could upload a file named index.php and your site would be replaced.
     
    melol2, Sep 23, 2006 IP