Need help with table width

by juztin
2 replies
  • WEB DESIGN
  • |
I spent many hours trying to find a way to fix this issue but nothing seems to fix it.

From what I understand, the table's width is messed up because of the weird characters that I have in my fields. Unfortunately, I cannot remove them.

Link: linksearcher

I really appreciate if someone can help me with this.
#table #width
  • Profile picture of the author David V
    Originally Posted by juztin View Post

    From what I understand, the table's width is messed up because of the weird characters that I have in my fields. Unfortunately, I cannot remove them.
    There's always a way to remove something......

    This will fix the width and wrap text that doesn't fit in the cell width.
    Obviously, removing the offending characters or better yet fixing them would be ideal.

    In your stylesheet style.css at line 983 you'll see this:
    Code:
    #ct {
    border-collapse: collapse;
    width: 700px;
    clear: both;
    }
    Change it to this:
    Code:
    #ct {
    border-collapse: collapse;
    width: 996px;
    clear: both;
    table-layout: fixed;
    word-wrap: break-word;
    {{ DiscussionBoard.errors[7635666].message }}
  • Profile picture of the author juztin
    Hey David!

    Thanks alot for the help. It looks way more cleaner now!
    Signature
    Visit my personal blog ---> OneRookie.com
    {{ DiscussionBoard.errors[7636088].message }}

Trending Topics