stancol2
Member
Hopefully this hasn't been asked and answered already. My search results didn't seem to bring anything up.
I'm having trouble getting the tables to look correct on my web site. I'm using WordPress if that helps.
My Web Site
For some reason there is a lot of extra space in each row. I even had to edit my CSS sheet just to get it to fit the way it does now. Here is the part I hacked together. Without the table-layout: fixed; and the width: 35px; it wouldn't even fit.
table, th, td {
table-layout: fixed;
width: 35px;
border-spacing: 0;
border-collapse: collapse;
padding: 0;
}
th {
text-align: center;
}
td {
text-align: center;
}
I'm having trouble getting the tables to look correct on my web site. I'm using WordPress if that helps.
My Web Site
For some reason there is a lot of extra space in each row. I even had to edit my CSS sheet just to get it to fit the way it does now. Here is the part I hacked together. Without the table-layout: fixed; and the width: 35px; it wouldn't even fit.
table, th, td {
table-layout: fixed;
width: 35px;
border-spacing: 0;
border-collapse: collapse;
padding: 0;
}
th {
text-align: center;
}
td {
text-align: center;
}