HTML Help thread

Emeralda

Pistis Sophia
#1
Because I need it.

Here's a code for starters:

Code:
<thead>
    <tr>
        <td width="100%" colspan="2" class="tcat">$vbphrase[whats_going_on]  
<a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('forumhome_activeusers')">
<img id="collapseimg_forumhome_activeusers"
 src="$stylevar[imgdir_button]/collapse_thead$vbcollapse[collapseimg_forumhome_activeusers].gif" alt="" border="0" /></a>
            <a href="online.php$session[sessionurl_q]">$vbphrase[currently_active_users]</a>:
 $totalonline (<phrase 1="$numberregistered" 2="$numberguest">$vbphrase[x_members_and_y_guests]</phrase>)
        </td>

    </tr>
</thead>
Now, how to make the $vbphrase[whats_going_on] stay aligned to left, while making the <a> tags align to right? Simply adding align right to the <a> didn't seem to work. It also needs to be done in one TD, or the lower columns will lose alignment.

http://prntscr.com/24vro
 

Emeralda

Pistis Sophia
#2
Another one. Basically, I can't seem to get the transparency to show on the angle corners, plus the borders and colours don't display properly.



Code:
<table style="-webkit-border-radius: 15px; -moz-border-radius: 15px; border-radius: 15px; background-color:white;" border-style: solid;  border-width: 2px; border-color: red;" align="center"><tr><td>
<table cellpadding="5" border="0" align="center">
        <tr>
            <td style="font-family: Verdana; font-size: 15px; color: blue;" align="center">Games</td>
        </tr>
<tr><td style="font-family: Comic Sans MF; font-size: 12px; color: red;" align="center"><a href="arcade.php?$session[sessionurl_q]">Arcade</a></td></tr>
<tr><td style="font-family: Comic Sans MF; font-size: 12px; color: red;" align="center"><a href="tripletriad.php{$session[sessionurl_q]}">$vbphrase[dbt_tt]</a>
</td></tr>
<tr><td style="font-family: Comic Sans MF; font-size: 12px; color: red;" align="center"><a href="gameroom.php?$session[sessionurl]">Gameroom [$playersInGameroom]</a>
</td></tr>
<tr><td style="font-family: Comic Sans MF; font-size: 12px; color: red;" align="center"><a href="/showthread.php?t=575">Melty Blood</a>
</td></tr>
<tr><td style="font-family: Comic Sans MF; font-size: 12px; color: red;" align="center"><a href="/showthread.php?t=6739">Touhou</a>
</td></tr>
</table>
</td></tr></table>
Updated (testing code, still buggy)

Code:
<div class="vbmenu_popup" id="gamesmenu_menu" style="display:none; margin-top:3px; -webkit-border-radius: 15px; -moz-border-radius: 15px; border-radius: 15px; background-color:white;" border-style: solid;  border-width: 2px; border-color: red;" align="center">
<table cellpadding="5" border="0" align="center" style="padding-left: 18px; padding-right:18px; padding-top:10px;">
        <tr>
            <td style="font-family: Verdana; font-size: 18px; color: blue;" align="center">Games</td>
        </tr>
</table>
<style type="text/css">
.popop {font-family: Comic Sans MF; font-size: 12px; color: black;}
.popop:hover {color:silver;}
</style>
<table cellpadding="3" border="0" align="center" style="padding-bottom: 12px;">
<tr><td align="center"><a href="arcade.php?$session[sessionurl_q]"  class="popop">Arcade</a></td></tr>
<tr><td align="center"><a href="tripletriad.php{$session[sessionurl_q]}" class="popop">$vbphrase[dbt_tt]</a>
</td></tr>
<tr><td align="center"><a href="gameroom.php?$session[sessionurl]"  class="popop">Gameroom [$playersInGameroom]</a>
</td></tr>
<tr><td align="center"><a href="/showthread.php?t=575"  class="popop">Melty Blood</a>
</td></tr>
<tr><td align="center"><a href="/showthread.php?t=6739"  class="popop">Touhou</a>
</td></tr>
</table>
</div>