Hi.
In the Atahualpa Theme Options, for Styling Tables, there's a box for Table Body Cells, which is where I think I might need set the padding. But the padding there seems to control the padding between cells, not text.
I'm working with CSS, and I can't seem to override whatever text formatting controls padding in the table, though I can change font-weight, size, and color. Here's how it's being called on the page, and below that is the CSS. Any ideas are appreciated.
<table class="main"><tr><td class="column1"><div id="issuehome">
<!-- table for homepage -->
table.main {
}
td.column1{vertical-align: top;
width: 315px;
}
td.column2 {
vertical-align: top;
width: 420px;
}
td.column3 {
vertical-align: top;
width: 220px;
}
<--! issue homepage formatting-->
#issuehome {
padding: 0px 25px 15px 25px;
font-size: 100%;
}
#issuehome h2 {
font-size: 125%;
padding: 0px 0px 0px 0px !important;
font-weight: bold !important;
}
#issuehome h2 a:link {
font-size: 125%;
padding: 0px 0px 0px 0px !important;
font-weight: bold !important;
}
#issuehome h3 {
font-size: 100%;
font-weight: bold !important;
padding: 0px 0px 0px 0px !important;
}
#issuehome h3 a:link {
font-size: 100%;
font-weight: bold !important;
padding: 0px 0px 0px 0px !important;
}
#issuehome p {
font-size: 100%;
text-align: left;
font-size: .75em;
}