Quote (Air)
I've been working on a way to make the Quote and Code boxes look a bit better and was wondering out you change the border around the message... I want it to be a solid one color border and the normal code for that doesn't work. Instead it's always an inset/outset (not sure which one) border. Below is a picture.
Here's the code I'm working with.
Quote
.codeMessage {background:#353535;font-size:9px;padding:10px;}
.quoteMessage {background:#353535;font-size:9px;padding:10px;}
and even if I change it to this code (below) it still won't appear correctly.
Quote
.codeMessage {background:#353535;font-size:9px;padding:10px;border:1px solid #505050;}
.quoteMessage {background:#353535;font-size:9px;padding:10px;border:1px solid #505050;}
There should be a simple override command added to the border's css properties.
Code
border:1px solid #505050 !important;
The reason it's not working is because the actual coding already has an inline style specified, so it takes precedence over any new styles that you may be trying on it. Also, try this instead.
Code
.codeMessage, .quoteMessage {background:#353535;font-size:9px;padding:10px;border:1px solid #505050;}
There you go Altric, I mean Air.