Odd Table Width

Hey Guys,

There’s a table about half way down the page that is going outside the content area. I can’t for the life of me figure out why? Any ideas?

Thanks

Removing the padding from here would fix it:

.post .entry-content table th, .post .entry-content table td {
padding: 5px;
}

but that looks ugly. Another quick fix would be to change the font size of the table. E.g. Add this to your style sheet:

table {
  font-size: 12px;
}

You could target just that table with a class if you didn’t want that to apply to all tables.

That’s all I can think of. :slight_smile:

Thanks a lot Ralph! :slight_smile: