check http://www.webmaster-talk.com/ in footer they have Webmaster Resources Marketplace: ( text links for sale section ) i want it similar for my forum ( businessforum.net ) can any one help me create it just one box thats about it.colors i want is ink blue.
Yeah, do you want me to just paste some code in here for you or do you want me to explain how instead of just the code ?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>Untitled Document</title> <style type="text/css"> .links_holder_dp { width: 500px; height: auto; background-color: #0099FF; padding: 10px; float: left; } .links_holder_dp li { display: inline; padding-top: 5px; padding-right: 10px; padding-bottom: 5px; padding-left: 10px; } .links_holder_dp a { color: #333333; text-decoration: none; font-weight: bold; } .links_holder_dp a:hover { text-decoration: underline; } .links_holder_dp ul { text-indent: -40px; } </style> </head> <body> <div class="links_holder_dp"> <ul> <li><a href="#">Home </a></li> <li><a href="#">Forum</a></li> <li><a href="#">Blog</a> </li> <li><a href="#">Link 1</a></li> <li><a href="#">Link 2</a></li> <li><a href="#">Link 3</a></li> <li><a href="#">Link 4</a> </li> <li><a href="#"></a></li> </ul> </div> </body> </html> Code (markup): Thats the whole page for a very simple link bar with simple rollover effect