Quote:
Originally Posted by Blindchild02
is there a way to add it ONLY to the quick reply background? not in all the textareas.. i want it in ONLY the quick reply BG
|
Yes... You would have to create a new CSS tag... like "qreply" or something.
Code:
qreply {
FONT-SIZE: 12px;
FONT-FAMILY: Verdana,Arial,Helvetica,sans-serif;
COLOR: #425C80;
BORDER: 1px dotted #283A52;
BACKGROUND-IMAGE: url("http://url here!");
background-repeat: no-repeat;
background-attachment: fixed;
}
And then add this to the code for your qreply box:
My Q-Reply box would now look like this (in html)
Code:
<textarea name="message" rows="10" cols="70" wrap="virtual" tabindex="2" class="qreply"></textarea>
And you should be able to change just that box without changing anything else.
I have not tested this! I am not a CSS guru! I would rather manually specify everything in HTML! Anyone able to edit my post that can fix any errors I have made, please do!