Forum Moderators: not2easy

Message Too Old, No Replies

Display navigation bar next, home and previous link

how do I put home link

         

iwannano1

9:31 pm on Jan 12, 2007 (gmt 0)

10+ Year Member



Hi,

I have following code that display links at the bottom of each article:


<div style="float:right"><a href="nav.html?n=35">Next</a></div>
<div id="anything"><a href="nav.html?n=33">Previous</a></div>

It generates link as follows:


Previous Next
----------------------------------------------
Article starts

How do i put home link in between Previous and Next links


Previous [Home] Next
----------------------------------------------
Article starts

[Home] link must be center of these two links using CSS code. I don't wanna use table.

TIA

cmarshall

4:29 am on Jan 13, 2007 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Like so?

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>test</title>
</head>
<body>
<div style="width:70%;margin-right:auto;margin-left:auto">
<div style="width:100%">
<div style="float:right;text-align:right;width:33%;margin:0;padding:0"><a href="test.html?n=35">Next</a></div>
<div style="float:left;text-align:left;width:33%;margin:0;padding:0"><a href="test.html?n=33">Previous</a></div>
<div style="float:left;text-align:center;width:33%;margin:0;padding:0"><a href="test.html?n=1">Home</a></div>
</div>
<div style="clear:both">Body Text</div>
</div>
</body>
</html>

iwannano1

6:27 am on Jan 13, 2007 (gmt 0)

10+ Year Member



Thanks it is working now :)