|
Posted by Simon on 03/18/06 11:35
>
>> Hi,
>>
>> We have a website, (blog site), where users can create/use their own
>> templates.
>>
>> We want to add a disclaimer and a link at the very bottom of the page.
>> I thought of adding the html just before the </body> but with css that
>> does
>> not always mean that it will be at the very bottom of the page.
>
> It does if you use the proper css for what you want. (Of course, this
> depends on how you define "page" above.)
I mean, whatever the user enters in their CSS, (position:absolute or fixed
and so on)
I want to be at the bottom of the page.
The last item a user would see after scrolling to the bottom of a page.
>
>> Is there a way of inserting a disclaimer that will appear at the footer
>> of
>> the page?
>
> Simply make it the last item before the body closing tag and don't
> position it. Now, if you're talking about a "footer" that remains at
> the bottom of the _viewport_, that's another matter.
No, that would be the bottom of the screen I guess.
I mean the bottom of the whole page, regardless how much there is in it.
something like, (everything is inline for the sake of keeping it short).
<div style="background: #ddd; display: block;height: 100%;width:
100%;padding: 0;margin: 0;border: 0;float: right;"></div>
<div style="display: block;clear: both;width: 95%;padding: 1;margin:
1;text-align: center;">
<br />
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA<br />
</div>
But that does not always work.
I just want to be at the very bottom of the page, (not the screen),
regardless of the size of the page.
Simon
Navigation:
[Reply to this message]
|