Log in

View Full Version : Overhead Bar



mvwebdesign
04-03-2008, 06:23 AM
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

Nile
04-03-2008, 11:44 AM
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:


width: 995px;
height: 50px;
position: fixed;
background: purple;
}

Then in your html:


<div id="bar" stlye="clear:both"></div>

So in all:


<style type="text/css">
#bar {
width: 995px;
height: 50px;
position: fixed;
background: purple;
}
</style>
<div id="bar" stlye="clear:both"></div>