Results 1 to 2 of 2

Thread: Overhead Bar

  1. #1
    Join Date
    Feb 2008
    Posts
    12
    Thanks
    4
    Thanked 0 Times in 0 Posts

    Default Overhead Bar

    Hi,

    I was just wondering if there was a script I could use that puts a bar across the top of the screen (like Blogger) without using a frame. I basically have a ton of websites that I want to identify as being mine by putting a bar across the top.

    Thanks
    RJ

  2. #2
    Join Date
    Jan 2008
    Posts
    4,168
    Thanks
    28
    Thanked 628 Times in 624 Posts
    Blog Entries
    1

    Default

    Well, that'd be called a header that has a different color, just change the header image. If thats not what you want, ad this to your css:
    Code:
    width: 995px;
    height: 50px;
    position: fixed;
    background: purple;
    }
    Then in your html:
    Code:
    <div id="bar" stlye="clear:both"></div>
    So in all:
    Code:
    <style type="text/css">
    #bar {
    width: 995px;
    height: 50px;
    position: fixed;
    background: purple;
    }
    </style>
    <div id="bar" stlye="clear:both"></div>
    Jeremy | jfein.net

  3. The Following User Says Thank You to Nile For This Useful Post:

    mvwebdesign (04-03-2008)

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
  •