MyBB Community Forums

Full Version: Changing Quote Box To Transparent
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey, Im looking for a fix to my unreadable quote box.

Here's a picture of the problem:

[Image: idY20q.png]

As you can see it's very hard to read whats in the quote box. Can someone explain to me how i would change it to something transparent or something that is easier to read.

Thanks
You have two options.
1) Change the text color in the quote box
ACP > Templates & Themes > (click on your theme) > global.css > (search for blockquote)
Replace with:
blockquote {
border: 1px solid #CCC;
color: black;
margin: 0px;
opacity: 0.5;
padding: 4px;
}

2) You can change the background color of the quote box:
ACP > Templates & Themes > (click on your theme) > global.css > (search for blockquote)
Replace with:
blockquote {
background-color: #BBB;
border: 1px solid #CCC;
margin: 0px;
opacity: 0.5;
padding: 4px;
}

You probably have to play with the colors a bit to get it like you want it.