Reiyan told me to post what I had done to the HW chat as an experiment. (Note, it only affected my chat)
Code:
<div class="testbox">
<table border="0">
<tr>
<td class="soundblocks">
<form><input type="checkbox" id="sounds-checkbox" name="sounds" value="Disable Sounds" onclick="handleSounds()"> Disable Sounds
</td>
<td class="soundblocks">
<input type="checkbox" id="notifications-checkbox" name="notifications" value="Disable Notifications" onclick="handleNotifications()"> Disable Notifications</form>
</td>
<td valign="top" class="soundblocks"><a href="chat-log.php" class="link-view-log">View Log</a></td></tr>
</table>
</div>
That HTML replaces the whole area down there with sounds and the chatlog link.
And then this is the CSS for that:
Code:
div.testbox{
border: 0px solid white;
background-color: none;
margin-left: 0px;
padding: 0px;
}
td.soundblocks{
padding-right: 15px;
}
Attachment:
chatedit.JPG [ 128.9 KiB | Viewed 2191 times ]
That is what chat looks like afterwards.

Thanks!