Changing font size of posts and quotes ?

Started by Bluearrow, February 20, 2009, 12:46:14 PM

Previous topic - Next topic

Bluearrow


I have change the theme of my forum but it seems its font size of posts and quotes are too small. How to change it ?

http://forums.mangaraiders.com

Theme - DarkBreak



.

ysNoi

AFAIK, you can edit your style.css file on Themes and Settings...! I'm just not sure what part on it to edit the fonts...!
"Don't fix it if it ain't broken, don't break it if you can't fix it."

Bluearrow

lol I know it must be the css too but  I'm not sure which part to edit. There are some places but im not sure about it.

shadow82x

For changing the quote size you can edit

In style.css
/* A quote, perhaps from another post. */
.quote {
       background: #272727 url(images/startquote.gif) 4px 4px no-repeat;
       color: #afafaf;
       border: 1px solid #212121;
       margin: 10px 0pt;
      padding: 10px 10px 20px 50px;
       width: auto;
       font-size: x-small;
       line-height: 120%;
}

You can replace font-size: x-small; with font-size: 11px; and adjust it.

For changing the post size find (style.css)
/* Posts and personal messages displayed throughout the forum. */
.post, .personalmessage {
       width: 100%;
       overflow: auto;
      line-height: 1.3em;
}

Replace With
/* Posts and personal messages displayed throughout the forum. */
.post, .personalmessage {
       width: 100%;
       font-size: 11px;
       overflow: auto;
      line-height: 1.3em;
}


Than you may adjust the font-size in the second code.

Tell us if you have any issues. :)
Colin B
Former Spammer, Customize, & Support Team Member

Bluearrow

Thanks Shadow82x it worked nicely. I have few more questions.

01. I like to change the font color and size of topic list in boards. Also to change the visited color so visitors can find links they visited before

02. I want to keep this dark color structure but want to make it place looks more alive. So what are the color and others changes you guys can recommend ?


.

Bluearrow


Advertisement: