XF 1.1 Style for Moderation Notification

rusman

Member
The message telling the poster that his/her message is in moderation blends right in. Does anyone know what style that message would be so I can make it stand out more?
 
Edit style property @messageNotice in "message layout" section.

If you want to add something to only moderation notice, not all notices, you'll have to add additional css to that notice. Add this to extra.css:
Code:
.messageNotices li.moderatedNotice { rules for moderated notice }
 
The entire line is

Code:
<div class="importantMessage">Your message has been submitted and will be displayed pending approval by a moderator.</div>

I would like to style that message.

 
Its in xenforo.css, but listed as p.importantMessage.

Replace
Code:
p.importantMessage
with
Code:
p.importantMessage,
div.importantMessage
and
Code:
p.importantMessage a
with
Code:
p.importantMessage a,
div.importantMessage a
 
Top Bottom