• Welcome to DNForum.com™ - Domain Sales, Domain Forum, Domain Appraisals, Domain Registrars
    If you are new to domains and looking to buy, sell and learn about domains then you have come to the right place. DNForum is the oldest global domain name community on the internet and continues to grow every day. There are over 45,000 domainers on DNForum doing everything from buying domains, selling domains, using our free in-house built tools, learning about domains and discussing domains. Take a minute and Register.

Wanted: Service I need a little help with a floating div, or making it static.

Status
Not open for further replies.

shacow

New Member
Legacy Platinum Member
Joined
Jul 9, 2008
Messages
6
Reaction score
0
Hi there,
I was wondering if someone could help me out here.

on my page http://shacow.com/dev.html
I have an image that is supposed to be fixed to the bottom of my main div,

the idea is, when their is more text on that page, and it become scrollable the image will stay in its place and the text will scroll without the image moving.

but for some reason that isnt working.

ive tried

#foldingathomeprogress {
text-align: center;
display: block;
position: fixed;

}

I hope someone can help me because this is driving me insane

you can view my style sheet at http://shacow.com/shacow.css :?:

thank you all, Shaun
 
Hi

try with

#foldingathomeprogress {
display: block;
text-align: center;
position: absolute;
top: 481px;
}
 
Status
Not open for further replies.
Back
Top Bottom