help with my footer

Discussion in 'HTML & Website Design' started by b2breps, Feb 16, 2009.

  1. #1
    I need a little help...

    Please look at the footer on my website http://yoursalesresume.com

    The footer is in the image file..

    My question is this how can I change the footer, I want to add several links on there. This site is PR3 and I want to have a couple links of it. Can somebodt explain how I can do this or where I maight be able to put some links without making it look junky.

    Thanks a lot..
     
    b2breps, Feb 16, 2009 IP
  2. xowi

    xowi Well-Known Member

    Messages:
    457
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    110
    #2
    Do you mean where the copyright and "powered by" are located?
     
    xowi, Feb 16, 2009 IP
  3. b2breps

    b2breps Active Member

    Messages:
    926
    Likes Received:
    19
    Best Answers:
    0
    Trophy Points:
    60
    #3
    yes, is it possible to add links there?
     
    b2breps, Feb 16, 2009 IP
  4. sikk08

    sikk08 Active Member

    Messages:
    161
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    55
    #4
    Here, do this.

    Your current coding.
    <a href="http://careerlist.info" title="Career List">Career List</a></td>
    <td width="1" id="Sep"></td>
    <td width="185" align="center" valign="top" id="LeftColumn"><img width="154" src="images/stepsbanner.jpg" height="601" /></td>
    </tr>
    </tbody>
    </table>
    <a href="http://public-newsgroups.com  " title="Newsgroup Reader">Newsgroup Reader</a></td>
    
    </tr>
    <tr>
    <td id="Footer"></td>
    
    HTML:
    The 2 links you got are Career Lists and Newsgroup reader. Put those in the td where the id is footer.

    Like this.

    </td>
    <td width="1" id="Sep"></td>
    <td width="185" align="center" valign="top" id="LeftColumn"><img width="154" src="images/stepsbanner.jpg" height="601" /></td>
    </tr>
    </tbody>
    </table>
    </td>
    
    </tr>
    <tr>
    <td id="Footer">
    <a href="http://careerlist.info" title="Career List">Career List</a>
    <a href="http://public-newsgroups.com  " title="Newsgroup Reader">Newsgroup Reader</a>
    </td>
    
    HTML:
    You will want to position them with the CSS file.

    If you need more help, I might not return to this thread so PM if you want me to come back to it.
     
    sikk08, Feb 16, 2009 IP
  5. oz.

    oz. Peon

    Messages:
    2
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #5
    Another way about it if you're planning on adding more links-

    Take your 2 current links (Career List,News..) and copy as shown here ;

    
    </table>
    <div class="footerLinks">
    <a href="http://careerlist.info" title="Career List">Career List</a>
    <a href="http://public-newsgroups.com  " title="Newsgroup Reader">Newsgroup Reader</a>
    <a href="#">Extra Link</a>
    </div>
    </td>
    
    </tr>
    <tr>
    <td id="Footer"></td>
    HTML:
    and then add this to within your style.css file

    .footerLinks {
    display: block;
    background: #fff;
    height: 23px;
    line-height: 20px;
    font-size: 11px;
    padding: 0 5px;
    }
    .footerLinks a {
    color: #008ec6;
    margin: 0 5px;
    padding: 3px;
    text-decoration: none;
    }
    .footerLinks a:hover {
    text-decoration: underline;
    }
    Code (markup):
    I think that should work fine for you, there are plenty of other ways to doing this. PM me and I might be willing to share more for a link :p
     
    oz., Feb 16, 2009 IP
  6. Shaun Dsouza

    Shaun Dsouza Peon

    Messages:
    45
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #6
    :) Good reply.
     
    Shaun Dsouza, Feb 16, 2009 IP
  7. bz1406

    bz1406 Peon

    Messages:
    93
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #7
    wow, thank for tips guy really work for me...
     
    bz1406, Feb 16, 2009 IP