Hi,
How do you perhaps supposedly make the previous / next arrow graphics somewhat 180 degrees, horizontally aligned next to the previous / next texts? Kinda like the following effects:
<= Previous or Next =>
I currently have it written as the following whereas the arrow graphic isn't quite horizontally aligned next to the text:
Quote:
<a href="">
<img align="bottom" src="previous.gif" alt="previous arrow" width="12" height="16" /></a>
<a href="">Previous Entries</a>
|
In the meantime, the following old source code of mine does the trick. But tables are kinda considered "outdated" at this point:
Quote:
<table border="0" width="100%" align="center" cellpadding="0" cellspacing="0">
<tr>
<td align="right"><a href=""><img src="previous.gif" border="0" width="12" height="16" align="middle" alt="Previous"></a></td>
<td> <a href="">Previous Speaker</a></td>
<td width="29"></td>
<td align="right"><a href="">Next Speaker</a> </td>
<td><a href=""><img src="next.gif" border="0" width="12" height="16" align="middle" alt="Next"></a></td>
</tr>
</table>
|
Thanks!