Need help with table width

by 2 replies
3
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.
#website design #table #width
  • 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;
  • Hey David!

    Thanks alot for the help. It looks way more cleaner now!

Next Topics on Trending Feed

  • 3

    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.