Results 1 to 4 of 4

Thread: How to create this bar

  1. #1
    Join Date
    Mar 2007
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default How to create this bar

    i like this thing that you can see on https://addons.mozilla.org/thunderbird/2110/

    how can i create it?

  2. #2
    Join Date
    Nov 2006
    Location
    chertsey, a small town 25 miles south west of london, england.
    Posts
    1,920
    Thanks
    2
    Thanked 267 Times in 262 Posts

    Default

    Hi there daniel-s,

    and a warm welcome to these forums.

    Does this help your cause....
    Code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
       "http://www.w3.org/TR/html4/strict.dtd">
    <html>
    <head>
    <title></title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    
    <style type="text/css">
    * {
        margin:0;
        padding:0;
     }
    body {
        background:#fff url(https://addons.mozilla.org/images/body_back.gif) repeat-x;
        color:#000;
     }
    #container {
        width:740px;
        margin:0 auto;
     }
    #mozilla-com a {
        float:right;
        display:block;
        text-indent:-5000em;
        width:110px;
        height:25px;
        text-decoration: none;
        background:url(https://addons.mozilla.org/images/mozilla-org.gif) no-repeat;
     }
    </style>
    
    </head>
    <body>
    
    <div id="container">
    
    <div id="mozilla-com"><a href="http://www.mozilla.com/">Visit Mozilla.com</a></div>
    
    </div>
    
    </body>
    </html>
    coothead

  3. #3
    Join Date
    Mar 2007
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    dude you'are a gentleman

    10x

  4. #4
    Join Date
    Nov 2006
    Location
    chertsey, a small town 25 miles south west of london, england.
    Posts
    1,920
    Thanks
    2
    Thanked 267 Times in 262 Posts

    Default

    No problem, you're welcome.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •