MyBB Community Forums

Full Version: Queto box.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello there,

I want to change the Queto Box colour.
At this moment the box is white so is the text too.
What i want i want a kinda transparant queto box (if that aint possible then black) and the text white.
Please help me and explain well.
Do you mean the quote box?
If so, search blockquote in your template.
Here is the CSS code that you have to edit. Its will be like VB Quote. Try this. Replace youre own old CSS with this one. Big Grin

blockquote {
-moz-border-radius:5px;
-webkit-border-radius:5px;
border-radius:5px;
background:#F2F6F8 url(http://u2.kaskus.us/34/4zywbrkk.png) 5px 10px no-repeat;
border:1px solid #417394;
font:italic 13px Tahoma,Calibri,Verdana,Geneva,sans-serif;
margin:10px;
position:relative;
top:0;
padding: 5px;
}

blockquote cite {
    font-weight: bold;
    font-style: normal;
    display: block;
    margin: 2px 0;
padding-left: 20px;
}

blockquote cite span {
    float: right;
    font-weight: normal;
}

blockquote cite span.highlight {
    float: none;
    font-weight: bold;
    padding-bottom: 0;
}