Minor flaw in design [DONE]

already fixed bugs

Moderator: AniDB

Locked
Elberet
Posts: 778
Joined: Sat Jul 19, 2003 8:14 pm

Minor flaw in design [DONE]

Post by Elberet »

Change the following HTML segment:

Code: Select all

<td width="100%" height="91" background="http://www.anidb.net/pics/anidb07.jpg">
    <a href="http://www.animereactor.net" target="_blank">
        <img src="http://www.anidb.net/pics/anidb01.jpg" width="863" height="91" border=0>
    </a>
    <img src="http://www.anidb.net/pics/anidb07.jpg" width="3" height="91">
</td>
To:

Code: Select all

<td width="100%" height="91" background="http://www.anidb.net/pics/anidb07.jpg" nowrap>
    <nobr>
        <a href="http://www.animereactor.net" target="_blank">
            <img src="http://www.anidb.net/pics/anidb01.jpg" width="863" height="91" border=0>
        </a>
        <img src="http://www.anidb.net/pics/anidb07.jpg" width="3" height="91">
    </nobr>
</td>
Otherwhise, if the browser window size is too small for the page header, the spacer image is wrapped over to the next line and an ugly empty space is created between the header bar and the main page content. I added linebreaks and indenting for better clarity only.
exp
Site Admin
Posts: 2438
Joined: Tue Oct 01, 2002 9:42 pm
Location: Nowhere

Post by exp »

fixed.

BYe!
EXP
Elberet
Posts: 778
Joined: Sat Jul 19, 2003 8:14 pm

Post by Elberet »

Woot. :)
Locked