Need Design Help: Layout Broken

Discussion in 'HTML & Website Design' started by hpgoodboy, Apr 17, 2010.

  1. #1
    I need some help with my web site: www.textbanker.com

    As you can see from the screenshots below, somthing is broken.

    [​IMG]

    This is how it should look like:
    [​IMG]

    Now, this error appears 100% in IE.

    In firefox only under homepage, the categories seem fine.


    So, if you can help me figure this out, would be great.
     
    hpgoodboy, Apr 17, 2010 IP
  2. themes4all

    themes4all Well-Known Member

    Messages:
    662
    Likes Received:
    47
    Best Answers:
    6
    Trophy Points:
    100
    #2
    look at this line :

    You have to add : valign="top" in order to make the Logo and The Text at the Same Line...

    The code have to be :

    Hope im not Wrong hehe
     
    themes4all, Apr 17, 2010 IP
  3. nfzgrld

    nfzgrld Peon

    Messages:
    524
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    0
    #3
    I think you have a different problem, and that's just the beginning. There's nothing on your page for which a table is appropriate, but the whole thing is designed around tables. In fact you have tables nested inside of tables nested inside of tables, and that is the root of your problem. The effect you're seeing on the page looks like there's a background image set to repeat somewhere or some similar problem.

    I assume you have a background set for one of those tags via CSS. I'd start there. Tables are notorious for screwing up background images, especially in a table or tr tag, where they don't belong anyway. More than that however, you really need to change the basic structure of the page. Like I said, there's nothing there appropriate for a table, but that's all there is. I think if you use cleaner block elements like <p> and <div> tags you'll do a lot better. Also, don't forget the value of the "display" element in CSS. If you continue to use tables the way you are here you'll always run into these kinds of problems.
     
    nfzgrld, Apr 17, 2010 IP
  4. hpgoodboy

    hpgoodboy Well-Known Member

    Messages:
    507
    Likes Received:
    14
    Best Answers:
    0
    Trophy Points:
    120
    #4
    Thanks nfzgrl.

    Unfortunately I did not design the site. It is a script that I bought and now I try to make it work.
     
    hpgoodboy, Apr 17, 2010 IP
  5. guardian999

    guardian999 Well-Known Member

    Messages:
    376
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    103
    #5
    add vertical-align to all table data
    
    td{
      vertical-align: top;
    }
    
    Code (markup):
     
    guardian999, Apr 18, 2010 IP