MyBB Community Forums

Full Version: Inferno Shoutbox (1.3.1) Move shout box and change color
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello i am trying to move the little white shoutbox where you type in your message 

Currently it is here on the top
[Image: JgDMMda.png]

I wanna move it to the bottom and i wanna know how i can change the color of it since my forum is grey colors
On your inferno_shoutbox template, move the code:

					<div id="inferno_alert" class="inferno_alert_inactive"></div>

					<!-- Shoutbox Content -->
					<div class="inferno_content" id="inferno_content" style="height:{inferno_css_height}px;">Loading...</div>
					<!-- End Shoutbox Content -->

just under the code:

<div class="inferno_shoutbox">

For the background color, put this code:

#inferno_shout_entry, #inferno_update_shout {
	background: #your color;
}

in the inferno.css
Thanks! that does the job. Any way i could change the color of the text entered in the box? cant find where
change the css code with

#inferno_shout_entry, #inferno_update_shout {
	background: #your background color;
	color: #your text color;
}

This should be good
ok all good! i want to remove the date [Image: aJLe2WX.png] so it is only the time [10:27 AM] any way i can do that?
If you doing this, you lose the date of the shout when it is 1 day old or more

you need to edit the class_core.php in plugin folder (/inc/plugin/inferno/class_core.php)

line 332/333 (for me), you have this code:

$row['timestamp'] = my_date($this->settings['dateformat'], $unixtime);
$row['timestamp'] .= ' ' . my_date($this->settings['timeformat'], $unixtime);

replace with :

//$row['timestamp'] = my_date($this->settings['dateformat'], $unixtime);
//$row['timestamp'] .= ' ' . my_date($this->settings['timeformat'], $unixtime);
$row['timestamp'] = my_date($this->settings['timeformat'], $unixtime);

If you want revert it, just delete the last line and remove the double slash at the beginning of two lines
Thanks for the help!
hi i have a problem with inferno shoutbox. For me it just says Shoutbox Notice: Something went wrong...

and none of the shouts i send are sending. Can you help?