Jump to content

bar at bottom of the browser window


UnknownPlayer

Recommended Posts

It does not work on every page, and its not on bottom of the window :S

This code works nice, but i need to align it to bootom-center, can u help me with this code:

.visibleDiv, #bar {
    position: fixed;
    width: 150px;
    border: solid 1px #e1e1e1;
    vertical-align: middle;
    background: #ffdab9;
    text-align: center;
}
#bar {
    top: 10px;
    left: 10px;
}

<div id="bar">
Bar text
</div>

It does not work on every page, and its not on bottom of the window :S

This code works nice, but i need to align it to bootom-center, can u help me with this code:

.visibleDiv, #bar {
    position: fixed;
    width: 150px;
    border: solid 1px #e1e1e1;
    vertical-align: middle;
    background: #ffdab9;
    text-align: center;
}
#bar {
    top: 10px;
    left: 10px;
}

<div id="bar">
Bar text
</div>

 

I showed you how to do it in the post right before this. I'm not sure why you ignored that.

This will work now. I had the wrong 'position' on it.

HTML:

<div id="bottom_bar_container">
  <div id="bottom_bar">Some text to be on the bottom</div>
</div>

 

CSS:

#bottom_bar_container
{
  position:fixed;
  bottom:0;
  width:100%;
}
#bottom_bar
{
  width: 550px;
  margin:0 auto;
}

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.