Log in

View Full Version : how do I change how quoted text appears


mindhunter77
12-16-2008, 01:34 PM
I can't seem to find how to change how the quoted text is displayed. Can anyone point me in the right direction?

Lynne
12-16-2008, 01:39 PM
I believe it's in the template bbcode_quote

mindhunter77
12-16-2008, 02:38 PM
Thanks that was it, was curious if you knew how to edit this line to add multiable text attributes, such as I would like to add font-style:italic as well


<div style="font-size:12pt">$message</div>

Lynne
12-16-2008, 02:48 PM
Here's a page to help you - http://www.w3schools.com/css/css_font.asp

So, add in font-style:italic if you want that.

mindhunter77
12-16-2008, 02:52 PM
Yea, I knew what to add, but couldn't figure out how to construct it so they are both there.

Lynne
12-16-2008, 02:52 PM
<div style="font-size:12pt; font-style:italic">$message</div>

mindhunter77
12-16-2008, 02:57 PM
ah, I was missing the ;

Thanks..