Html experts: Need some help with some tables

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Violetta
    Affiliate
    • Jul 2004
    • 28735

    #1

    Html experts: Need some help with some tables

    http://www.tinasnylons.com/

    take a look at it in IE. It looks a bit fucked up. Works perfectly in Opera, but that doesnt matter much since 1000000000% of the surfers are using IE. Anyway, do you know what I have done wrong? Something is out of line lol

    Help would be great... this is getting on my nerves
    M&A Queen
  • DjSap
    Confirmed User
    • Jul 2002
    • 3869

    #2
    http://validator.w3.org/check?uri=ht...snylons.com%2F
    Blog Themes, TGP Design, Writing Services, Grunt Work
    ICQ: 66871495

    Comment

    • selena
      Confirmed User
      • Aug 2004
      • 7995

      #3
      I don't think it is anything html wise with your tables. I think something isn't fitting right in the design template. Did it look like that in IE before you loaded thumbs and banners into it?
      Last edited by selena; 02-10-2007, 06:27 PM.
      ~
      Doer of Things at
      MetArtMoney
      Where Flawless Beauty Meets Art
      ~The MetArt Network ~
      selena.delgado9

      Comment

      • Violetta
        Affiliate
        • Jul 2004
        • 28735

        #4
        Originally posted by selena
        I don't think it is anything html wise with your tables. I think something isn't fitting right in the design template. Did it look like that in IE before you loaded thumbs and banners into it?
        i never checked in IE as far as I can remember

        Though I must agree with you. It seems to be something with the thumbs or banners, but cant understand why. And why is it working so fine in Opera? (cause they dont follow any standards yes, but why why why)

        Can anyone with FireFox please check it out?
        M&A Queen

        Comment

        • selena
          Confirmed User
          • Aug 2004
          • 7995

          #5
          Originally posted by Rockatansky
          i never checked in IE as far as I can remember

          Though I must agree with you. It seems to be something with the thumbs or banners, but cant understand why. And why is it working so fine in Opera? (cause they dont follow any standards yes, but why why why)

          Can anyone with FireFox please check it out?
          I can't answer why, but I can tell you that I have a gallery template right now doing the *exact* same thing in ie. If I take out the thumbs, the template is fine. Put the thumbs in, and it breaks apart. And the thumbs I'm putting in are the size the template was designed for.

          I checked your link in FF, it looks fine.

          As does the template that busted my ass for an hour this afternoon before I stopped trying to figure it out.
          ~
          Doer of Things at
          MetArtMoney
          Where Flawless Beauty Meets Art
          ~The MetArt Network ~
          selena.delgado9

          Comment

          • Aric
            Confirmed User
            • Sep 2002
            • 1209

            #6
            99% of the time it is spaces in the HTML.. especially when it comes to an image in a table cell.

            Example from your code:

            Code:
            <td>
            			<img src="images/tod_15.jpg" width="120" height="20" alt=""></td>
            would be better off as

            Code:
            <td><img src="images/tod_15.jpg" width="120" height="20" alt=""></td>
            Sounds crazy, but it usually fixes those mysterious gaps
            Awesome cloud hosting by DigitalOcean

            Comment

            • Violetta
              Affiliate
              • Jul 2004
              • 28735

              #7
              Originally posted by selena
              I can't answer why, but I can tell you that I have a gallery template right now doing the *exact* same thing in ie. If I take out the thumbs, the template is fine. Put the thumbs in, and it breaks apart. And the thumbs I'm putting in are the size the template was designed for.

              I checked your link in FF, it looks fine.

              As does the template that busted my ass for an hour this afternoon before I stopped trying to figure it out.
              hehe... I know how you feel! Perhaps this works. I'm gonna give it a try:






              Originally posted by Aric
              99% of the time it is spaces in the HTML.. especially when it comes to an image in a table cell.

              Example from your code:

              Code:
              <td>
              			<img src="images/tod_15.jpg" width="120" height="20" alt=""></td>
              would be better off as

              Code:
              <td><img src="images/tod_15.jpg" width="120" height="20" alt=""></td>
              Sounds crazy, but it usually fixes those mysterious gaps
              M&A Queen

              Comment

              • uno
                RIP Dodger. BEST.CAT.EVER
                • Dec 2002
                • 18450

                #8
                did you try setting the border of the image to 0 as well as cellspacing and padding?
                -uno
                icq: 111-914
                CrazyBabe.com - porn art
                MojoHost - For all your hosting needs, present and future. Tell them I sent ya!

                Comment

                • tical
                  Confirmed User
                  • Feb 2002
                  • 6504

                  #9
                  not sure if the formatting will be preserved in the links below... but either do what the first guy suggested and bring the <td><a href><img></a></td> all together OR add a <br> after the </a> below

                  the carriage return is the problem

                  Code:
                  	<td rowspan="2">
                  <a href="http://www.stockingsangels.com/fhg/sa/01/gall29/index.php?id=1100972" target="_blank"><img src="http://tinasnylons.com/tgp/thumbs/65.jpg" border="0" alt="Thumb"></a>
                  </td>
                  should be

                  Code:
                  <td rowspan="2"><a href="http://www.stockingsangels.com/fhg/sa/01/gall29/index.php?id=1100972" target="_blank"><img src="http://tinasnylons.com/tgp/thumbs/65.jpg" border="0" alt="Thumb"></a></td>
                  or

                  Code:
                  	<td rowspan="2">
                  <a href="http://www.stockingsangels.com/fhg/sa/01/gall29/index.php?id=1100972" target="_blank"><img src="http://tinasnylons.com/tgp/thumbs/65.jpg" border="0" alt="Thumb"></a><br>
                  </td>
                  112.020.756

                  Comment

                  • Violetta
                    Affiliate
                    • Jul 2004
                    • 28735

                    #10
                    I got it.-.. Did all what you guys said and I also found a link that contained some &#37; (spacing)
                    M&A Queen

                    Comment

                    • xenilk
                      Confirmed User
                      • Jan 2006
                      • 921

                      #11
                      The carriages returns are the problem, as stated before BUT a real HTML expert would tell you to use divs and css.
                      40$/Page PSD->XHTML/CSS Transformations

                      Comment

                      Working...