I cannot get Next and Previous hyperlinks to line up properly at the right hand side of the page up next to the top of the page displayed.
Here is a code goint into part of the first record in the db showing how the hyperlinks are created.
QUOTE
INSERT INTO `recordname`.`tablename` (`PrevNextNum`,`Source`,`VerseRef`,`Text`,`Index`) VALUES ('1','ACL','Gen 1:1','<p align="right"><font face="Arial"><a href="http://www.findthepower.net/CP/CommentaryProject/PostNewABC2_PrevNext.php?ACL=ON&PrevNextNum=PrevNumberSequence"><PREVIOUS</a> <a href="http://www.findthepower.net/CP/CommentaryProject/PostNewABC2_PrevNext.php?ACL=ON&PrevNextNum=2">NEXT></a></font> <P CLASS="western" STYLE="margin-bottom: 0in"><FONT FACE="Arial", serif"><FONT SIZE=2 STYLE="font-size: 11pt"><B>God in the beginning created the heavens and the earth - </B></FONT></FONT><SPAN LANG="ar-SA"><FONT COLOR="#0000ff"><FONT FACE="TITUS Cyberbit Basic, serif"><FONT SIZE=2 STYLE="font-size: 11pt"><SPAN LANG="he-IL">בראשית ברא אלהים את השמים ואת הארץ</SPAN></FONT></FONT></FONT><FONT FACE="Arial", serif"><FONT SIZE=2 STYLE="font-size: 11pt"><SPAN LANG="he-IL"> </SPAN></FONT></FONT></SPAN><FONT FACE="TITUS Cyberbit Basic, serif"><FONT...other record content goes here.
This is the part of the php page that displays the db record content.
QUOTE
echo " <div align=\"center\">\n";
echo " <center>\n";
echo " <table border=\"0\" cellspacing=\"0\" width=\"98%\" cellpadding=\"0\" bgcolor=$colorbg bordercolorlight=\"#000000\">\n";
echo " <tr>\n";
echo " <td width=\"100%\"><font color=#FF0066 face=Arial size=2>Verse Reference</font><font face=Arial size=2 color=#000000>\n";
echo "</font><font face=\"Arial\" color=\"#000000\" size=\"2\">$VerseRef</font></td>\n";
echo " </tr>\n";
echo " <tr>\n";
echo " <td width=\"100%\"><font color=#FF0066 face=Arial size=2>Text:</font><font face=Arial size=2 color=#000000>\n";
echo "</font><font face=\"Arial\" color=\"#000000\" size=\"2\">$Text</font></td>\n";
echo " </tr>\n";
echo " <tr>\n";
echo " <td width=\"100%\"><font color=#FF0066 face=Arial size=2>Source:</font><font face=Arial size=2 color=#000000>\n";
echo "<font size=2>$Source</font></td>\n";
echo " </tr>\n";
echo " </table>\n";
echo " </center>\n";
Currently the Previous and Next links appear too low on the page instead of lining up at the top of the page. The Previous and Next links line up properly along the right hand side of the page.
QUOTE
Verse Reference: Gen 1:1
Text:
.........................................................................................................................<PREVIOUS NEXT>
God in the beginning created the heavens and the earth - בראשית ברא אלהים את השמים ואת הארץ Bereshith bara Elohim eth hashshamayim veeth haarets; God in the beginning created the heavens and the earth.
This is how I want the Previous and Next links to line up.
QUOTE
Verse Reference: Gen 1:1.........................................................................<PREVIOUS NEXT>
Text:
God in the beginning created the heavens and the earth - בראשית ברא אלהים את השמים ואת הארץ Bereshith bara Elohim eth hashshamayim veeth haarets; God in the beginning created the heavens and the earth.
The periods in a line do not go on the page to be displayed. I had to use the periods in a line to give some idea as to what my issue is.
Thank you in advance for your time and replies.