MyBB Community Forums

Full Version: CSS mixmatch [Quote Bubbles]
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I'm not a big man of finding out what to edit when it comes to stylesheets, and this occasionally happens to me.

Have a look at this thread:
http://forums.evogaming.org/thread-54.html

Where you see the words "On Hold" in the thread, there is actually text in those quote bubbles. You can only see it if you highlight/select it, though.

If I were to change the text color, it would change ALL text colors.. would it not? I seriously have no patience to go crazy with it.. it took me long enough to get everything just right with the rest of the templates and I'm still not done after converting it.

Help me out? Sad
I'm using the wbSteam theme on 1.6.4 with my own modifications to it.
Find in your global.css:

blockquote {
border: 1px solid #cac8c8;
margin: 0;
background: #fff;
padding: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
}

Make it:

blockquote {
color: #000; /* Change the color hex as you wish */
border: 1px solid #cac8c8;
margin: 0;
background: #fff;
padding: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
}