Add-on Blizzard Ent. Quote Addon or BB Code

Champie98

Member
Many other forum softwares and forums I have used before have a Blizzard style quote for use in quoting patch notes, or dev responses, etc. I'd really like to implement that into my forums, but do not see it anywhere on here.
 
I'd be very much interested in this as well. Editing the css itself is not such a real daunting task for the message body, but making it costumizable for people who don't know css might actually be a very nice idea for an addon.
Also the problem starts becoming when someone 'non blue' is quoting a blue, which could override the styling. There's an entry in the xenforo manual that might help you further with this https://xenforo.com/help/user-group-styling/
 
So this is pretty basic... it's literally just a basic BBCode with some styling:

ACP -> Custom BB Codes -> Import Custom BB Codes -> Import the attached xml

Paste this inside your extra.css, of course adjust to your liking

Code:
.customQuote
{
   background-color: #3c3c3c;
   border: 1px solid #323232;
   color: #00b4ff;
   padding: 15px;
}
.customQuote .customQuoteTitle
{
   color: #f7931e;
}


This is how you'd use it on your forum:

Code:
[customquote=Russ]text here[/customquote]

Results in:

Screenshot_4.webp
 

Attachments

Top Bottom