ArizonaJohn Posted November 27, 2009 Share Posted November 27, 2009 Hello, I am having problems with the CSS for the pagination page number links below. What CSS would make the links have the following properties below? Start at an absolute position of 940 px from the top of the screen and 100 px from the right. Be 10 px apart from each other. Thanks in advance, John /****** build the pagination links ******/ // range of num links to show // if not on page 1, don't show back links if ($currentpage > 1) { // show << link to go back to page 1 echo " <div class='pages'><div class='pages'><a href='{$_SERVER['PHP_SELF']}?currentpage=1&find={$_SESSION['find']}&searching=yes&search=search' class='linksp'><<</a></div> "; // get previous page num $prevpage = $currentpage - 1; // show < link to go back to 1 page echo " <div class='pages'><a href='{$_SERVER['PHP_SELF']}?currentpage=$prevpage&find={$_SESSION['find']}&searching=yes&search=search' class='linksp'><</a></div> "; } // end if // loop to show links to range of pages around current page for ($x = ($currentpage - $range); $x < (($currentpage + $range) + 1); $x++) { // if it's a valid page number... if (($x > 0) && ($x <= $totalpages)) { // if we're on current page... if ($x == $currentpage) { // 'highlight' it but don't make a link echo " <div class='pages'>[<b>$x</b>] </div>"; // if not current page... } else { // make it a link echo " <div class='pages'><a href='{$_SERVER['PHP_SELF']}?currentpage=$x&find={$_SESSION['find']}&searching=yes&search=search' class='linksp'>$x</a></div> "; } // end else } // end if } // end for // if not on last page, show forward and last page links if ($currentpage != $totalpages) { // get next page $nextpage = $currentpage + 1; // echo forward link for next page echo " <div class='pages'><a href='{$_SERVER['PHP_SELF']}?currentpage=$nextpage&find={$_SESSION['find']}&searching=yes&search=search' class='linksp'>></a></div> "; // echo forward link for lastpage echo " <div class='pages'><a href='{$_SERVER['PHP_SELF']}?currentpage=$totalpages&find={$_SESSION['find']}&searching=yes&search=search' class='linksp'>>></a></div> "; } // end if /****** end build pagination links ******/ Quote Link to comment Share on other sites More sharing options...
haku Posted November 29, 2009 Share Posted November 29, 2009 Show us the code that is generated, not the code that generates. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.