Layout glitch on profile creq page [CSSFIXED]

already fixed bugs

Moderator: AniDB

Locked
WildCard
Posts: 10
Joined: Wed Nov 26, 2003 10:07 pm

Layout glitch on profile creq page [CSSFIXED]

Post by WildCard »

This isn't really a big deal, but I noticed that the "prev" and "next" links on the myCReq page aren't on the same line, as is evident in the html

Code: Select all

(snip)
    <table width="400">
    <tr>
	<td>  prev </td>
    </tr>
    <tr>
	<td align="right">  next </td>
    </tr>
    </table>
(snip)
I'd say it should be

Code: Select all

(snip)
    <table width="400">
    <tr>
	<td>  prev </td>
	<td align="right"> next </td>
    </tr>
    </table>
(snip)
Dunno if it's even worth "fixing", but now it's spotted. :P

-WildCard
Locked