Hey, great mod and my community is loving it so far. One question, I can't find the css to change the highlight color, right now it is a dark grey which makes the highlighted text unreadable and I want to just use a hex value for a soft yellow or something, I think the class to edit it is dbtech_vbshout_message_frame in the dbtech_vbshout_frames template, but I don't know how to get the highlight class to take a different color...
Here are the current contents of that template.
HTML Code:
<div class="dbtech_vbshout_message_frame">
<div id="dbtech_shoutbox_notice_frame{vb:var instance.instanceid}" style="display:none;">
<div class="highlight" style="padding: {vb:stylevar blockrow_padding}"><b>{vb:rawphrase dbtech_vbshout_notice}:</b> <span id="dbtech_shoutbox_notice_message{vb:var instance.instanceid}">N/A</span></div>
</div>
<div id="dbtech_shoutbox_error_frame{vb:var instance.instanceid}" style="display:none;" class="highlight">
<div class="highlight" style="padding: {vb:stylevar blockrow_padding}"><b>{vb:rawphrase dbtech_vbshout_error}:</b> <span id="dbtech_shoutbox_error_message{vb:var instance.instanceid}">N/A</span></div>
</div>
<div id="dbtech_shoutbox_success_frame{vb:var instance.instanceid}" style="display:none;">
<b>{vb:rawphrase dbtech_vbshout_success}:</b> <span id="dbtech_shoutbox_success_message{vb:var instance.instanceid}">N/A</span>
</div>
<div id="dbtech_shoutbox_sticky_frame{vb:var instance.instanceid}" style="display:none;" ondblclick="javascript:vBShout{vb:var instance.instanceid}.edit_sticky();">
<b>{vb:rawphrase dbtech_vbshout_sticky}:</b> <span id="dbtech_shoutbox_sticky_message{vb:var instance.instanceid}">N/A</span>
</div>
</div>
Here's a screenshot of the current highlighting situation. Any help would be greatly appreciated!