Currently I don't have the Category thing in there, since MTCategoryLabel returned an error every time.
This is everything after the banner in the Master Archive Index:
CODE
<div id="master">
<div class="blog">
<div class="blogbody">
<blockquote><blockquote>
<center>
<TABLE BORDER="5" CELLSPACING="3" CELLPADDING="3">
<MTArchiveList>
<TR>
<TD ALIGN = "left"><b> <a href="<$MTArchiveLink$>">• <$MTArchiveTitle$></a> </b></TD>
<TD ALIGN = "right"> <MTArchiveDate format="%A, %x"> </TD>
</TR>
</MTArchiveList>
</TABLE>
</center>
</blockquote></blockquote>
</div>
</div>
</div>
And this is the master definition in the stylesheet:
CODE
#master {
float:center;
width:89%;
font-size:x-small;
background:#000000;
margin-left:0px;
margin-bottom:0px;
}
I know the style sheet entry looks weak and isn't doing much right now, and the whole style sheet could use some sprucing up.
I want to:
A) affect the text size/style (no matter what I do in the style sheet or Master Archive Index, the text style in the table will not change)
--------------------------
B) convert the days of the week into the same kind of page you get if you click on a date in the calendar--it brings up all entries for that day--like Monthly but only for one day...
I tried this:
CODE
<a href="<MTArchiveList archive_type="Daily">"><MTArchiveDate format="%A, %x"></a>
(inside a table code, of course), and it turned out pretty wrong--it listed all dates I've made a post, to the right of EACH entry, and only the first date listed was a link, and it only linked to the main index page. If it's impossible I can live with not having links for the dates.
--------------------------
C) add Category names and/or links--I really just need to know the tag to use instead of MTCategoryLabel, or just tell me it's impossible and I'll move on
I tried this:
CODE
<MTEntryCategories>
<a href="<$MTCategoryArchiveLink$>" target="_blank"><$MTCategoryLabel$></a></MTEntryCategories>
but it gave an error on Rebuild every time, no matter the changes--MTCategoryLabel used "out of context".