Forum Moderators: open

Message Too Old, No Replies

Problem of background peep at bottom of page

Can't get an image at the very bottom--thin strip of the backgnd peeps thru

         

MarkLDE

3:24 am on Nov 17, 2002 (gmt 0)

10+ Year Member



Please see the following link where the problem is both explained and demonstrated:

<sorry, no urls>

A solution would be greatly appreciated. Thanks.

MarkLDE

[edited by: tedster at 5:32 am (utc) on Nov. 17, 2002]

davidj

3:34 am on Nov 17, 2002 (gmt 0)

10+ Year Member



Using Mozilla 1.1, I was able to get rid of the bump at the bottom by changing your:

<div class="bottom">
<img src="http://example.com/tileproblem/bottombackground.gif">
</div>

to either:

<div class="bottom"
><img src="http://example.com/tileproblem/bottombackground.gif"
></div>

or:

<div class="bottom"><img src="http://example.com/tileproblem/bottombackground.gif"></div>

Which is basically the all time problem of a hard return inside of a table cell doing the same thing. The first example makes it a little nicer to read than having it all on one line like the second example.

davidj-davidj.org

[edited by: tedster at 5:34 am (utc) on Nov. 17, 2002]
[edit reason] change to generic domain name [/edit]

MarkLDE

4:03 am on Nov 17, 2002 (gmt 0)

10+ Year Member



THANK YOU! :)

MarkLDE