1) How do you get rounded footers on the tags page? Note: I'm using the Spiffy Tags Page tutorial.
2) How can you make the entire box rounded on the "error page" (aka "There were no entries on this date" page)? Note: I'm using a custom error page (not sure what to call it).
3) How can I fix my comment headers (where it says "thread started by" or "comment started by") to get them to perfectly match my component headers without changing the way the date looks on my entry headers? Note: I'm using the Spiffy Date tutorial.
Here's the code I messed with to get the date looking that way in the entry header (editing .entryDate seemed to be what messed up the comment headers):
.entryDate {
text-align: center;
text-align: middle;
text-transform: uppercase;
line-height: 25px;
height: 21px;
align: middle;
font-weight: bold;
padding-top: 2px;
padding-bottom: 5px;
margin-top: 7px;
margin-bottom: 0px;
}
/* For Spiffy Date */
/* .date2 { */
/* line-height: 25px; */
/* margin-top: 2px; */
/* margin-bottom: 5px; */
/* margin-left: 2px; */
/* font-family: Verdana; */
/* font-size: 7pt; */
/* color: $*header_fgcolor; */
/* letter-spacing: 2px; */
/* text-align: right; */
/* } */
.date3 {
line-height: 25px;
margin-top: 0px;
margin-bottom: 0px;
margin-right: 0px;
font-size: 7pt;
font-weight: bold;
color: $*header_fgcolor;
letter-spacing: 0px;
text-align: center;
padding-bottom: 3px;
}
.date4 {
line-height: 2px;
font-family: Arial Black;
font-size: 25pt;
color: $*comp_bgcolor;
font-weight: 800;
letter-spacing: -4px;
text-align: center;
padding-top: 3px;
}
4) Is there a way to use CSS to specify how particular font should look?
For example, can you could make all < big > font in the entries also be bold and a specific color:
big {
color: $*header_fgcolor;
font-weight: bold;
}
5) For some reason putting this in my CSS is not working to customize my subject line and I can't figure out why:
.entryHeader {
color: $*header_bgcolor;
font-weight: bold;
}