need very simple help

Discussion in 'HTML & Website Design' started by forumrating, Apr 3, 2007.

  1. #1
    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.
     
    forumrating, Apr 3, 2007 IP
  2. Valve-Hosting

    Valve-Hosting Peon

    Messages:
    1,071
    Likes Received:
    31
    Best Answers:
    0
    Trophy Points:
    0
    #2
    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 ? :)
     
    Valve-Hosting, Apr 3, 2007 IP
  3. forumrating

    forumrating Notable Member

    Messages:
    6,565
    Likes Received:
    347
    Best Answers:
    0
    Trophy Points:
    275
    #3
    just paste the code :), i want things to look neat, right now its looking like jungle.
     
    forumrating, Apr 3, 2007 IP
  4. Valve-Hosting

    Valve-Hosting Peon

    Messages:
    1,071
    Likes Received:
    31
    Best Answers:
    0
    Trophy Points:
    0
    #4
    Ok bear with me for 5 minutes and ill post it up for you ;)
     
    Valve-Hosting, Apr 3, 2007 IP
  5. forumrating

    forumrating Notable Member

    Messages:
    6,565
    Likes Received:
    347
    Best Answers:
    0
    Trophy Points:
    275
    #5
    ok ill wait up, take on all the links, i think there are about 12 in businessforum.net.
     
    forumrating, Apr 3, 2007 IP
  6. Valve-Hosting

    Valve-Hosting Peon

    Messages:
    1,071
    Likes Received:
    31
    Best Answers:
    0
    Trophy Points:
    0
    #6
    <!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
     
    Valve-Hosting, Apr 3, 2007 IP