Well, for the 2nd issue, since you're using "markup" mode to manually define the pagination links' HTML, it's mainly comes down to just modifying that HTML to include text alongside the images:
Code:
<div id="paginate-slider1" class="pagination">
<a href="#" class="toc"><img src="images/fhs_11_10_07/29.jpg" width="85" height="63" border="2" /></a>
<a href="#" class="toc"><img src="images/players/alums/DWalker/5.jpg" width="85" height="63" border="2" /></a>
<a href="#" class="toc"><img src="images/mainart1.gif" width="85" height="63" border="2" /></a>
<a href="#" class="toc"><img src="images/mainart3.gif" width="85" height="63" border="2" /></a>
<a href="#" class="toc"><img src="images/players/alums/CWearher/weatherington22.jpg" width="85" height="63" border="2" /></a>
</div>
Perhaps modify the above to something like:
Code:
<style type="text/css">
.tocboxes{
float: left;
width: 150px;
}
.tocboxes a img{
float: left;
}
</style>
<div id="paginate-slider1" class="pagination">
<div class="tocboxes"><a href="#" class="toc"><img src="images/fhs_11_10_07/29.jpg" width="85" height="63" border="2" /> Some text</a></div>
<div class="tocboxes"><a href="#" class="toc"><img src="images/players/alums/DWalker/5.jpg" width="85" height="63" border="2" /> Some text</a></div>
<div class="tocboxes"><a href="#" class="toc"><img src="images/mainart1.gif" width="85" height="63" border="2" /></a></div>
<div class="tocboxes"><a href="#" class="toc"><img src="images/mainart3.gif" width="85" height="63" border="2" /></a></div>
<div class="tocboxes"><a href="#" class="toc"><img src="images/players/alums/CWearher/weatherington22.jpg" width="85" height="63" border="2" /></a></div>
</div>
I think you get the idea.
Bookmarks