[quote=DionDev;1554410]open up shoutbox.php
replace this:
Code:
<table cellpadding="0" cellspacing="0" border="0" width="100%">
<tr>
<td width="1%" valign="top" style="padding-right: 15px;">
<table cellpadding="5" cellspacing="1" border="0" width="175" class="tborder">
<tr>
<td width="100%" align="center" class="thead">
<?php echo $shoutboxname; ?>
</td>
</tr>
<tr>
<td width="100%" align="center" class="alt2" style="padding: 10px 5px 10px 5px;">
<font class="smallfont">
<?php
if ($vbulletin->userinfo['userid'] == 0 && $guestshouts == false)
{
echo "You must be logged in to send shouts.";
}
else
{
?>
<form name="shoutform" method="POST" onsubmit="saveData(); return false;" style="margin: 0px;">
<input type="text" name="message" maxlength="500" onFocus="if(this.value=='type message here') this.value='';" onblur="if(this.value=='') this.value='type message here';" value="type message here" style="width: 155px; margin-bottom: 10px;" class="bginput" /><br />
<input type="submit" name="submit" value="Submit Shout" class="button" />
</form>
<?php
}
?>
</font>
</td>
</tr>
</table>
</td>
<td width="99%" valign="top">
<div id="shoutarea"></div>
</td>
</tr>
</table>
with this:
Code:
<table cellpadding="5" cellspacing="1" border="0" width="100%" class="tborder" style="margin-bottom: 5px;">
<tr>
<td width="100%" align="center" class="thead">
<?php echo $shoutboxname; ?>
</td>
</tr>
<tr>
<td width="100%" align="center" class="alt2">
<font class="smallfont">
<?php
if ($vbulletin->userinfo['userid'] == 0 && $guestshouts == false)
{
echo "You must be logged in to send shouts.";
}
else
{
?>
<form name="shoutform" method="POST" onsubmit="saveData(); return false;" style="margin: 0px;">
<table cellpadding="0" cellspacing="0" border="0" width="100%">
<tr>
<td width="99%" style="padding-right: 5px;">
<input type="text" name="message" maxlength="500" onFocus="if(this.value=='type message here') this.value='';" onblur="if(this.value=='') this.value='type message here';" value="type message here" class="bginput" style="width: 100%;" />
</td>
<td width="1%">
<input type="submit" name="submit" value="Submit Shout" class="button" />
</td>
</tr>
</table>
</form>
<?php
}
?>
</font>
</td>
</tr>
</table>
<div id="shoutarea"></div>
let me know how that works out for you.
I'm having trouble with your shoutbo
No colors, form above text and still scrolls. Font has no proper style type inherited from forum, pretty much like the lack of colors.
I'm using a custom template found at /images/stylename so its not in the /root folder of the forum as some styles are installed.