1

Topic: Change body font size - Stylish Oxygen

Punbb version: PunBB 1.4.2

Hi, I need help to change font size of the body of my forum.
Here are an image of what I mean


http://imagizer.imageshack.us/v2/280x200q90/850/wka4.jpg


Where can I modified the font size?

Regards,

Re: Change body font size - Stylish Oxygen

Approximately so

.entry-content {
...
    font-size: 2em;
}
ForkBB
I speak only Russian  :P

3

Re: Change body font size - Stylish Oxygen

Hi Visman

My code is:
.entry-content{padding-bottom:2em;overflow:hidden;width:100%;min-height:7em}#brd-help
.entry-content{min-height:4em}
.entry-content ol{padding-left:2.5em;list-style-type:decimal}
.entry-content ol p,
.entry-content ul p{padding:0}
.entry-content ol.alpha{list-style-type:upper-alpha}
.entry-content h5{font-weight:normal;font-size:1.5em;line-height:1.5em}
.entry-content img{vertical-align:text-top;max-width:100%}
.entry-content .quotebox,
.entry-content .codebox{border-style:solid;border-width:1px;margin:.75em 1em;padding:1em .75em}
.entry-content .codebox{font-size:.97em}
.entry-content blockquote{overflow:hidden;width:100%}
.entry-content .quotebox cite{display:block;font-style:normal;font-weight:bold}
.entry-content pre{margin:0;max-height:35em;min-height:2em;overflow:auto;padding:0 2% .1em 0;width:98%}
.entry-content span.bbu{text-decoration:underline}
.entry-content br

I change on:
.entry-content h5{font-weight:normal;font-size:1.5em;line-height:1.5em}
to
.entry-content h5{font-weight:normal;font-size:2.5em;line-height:1.5em}

With no effect.

I am doing something wrong?

Best regards.

Re: Change body font size - Stylish Oxygen

And if to add in the end the css files this code

.entry-content {
    font-size: 2em;
}
ForkBB
I speak only Russian  :P

5

Re: Change body font size - Stylish Oxygen

Perfect! Now it is in correct size.

Users signature increse size too. How can I change it?

Re: Change body font size - Stylish Oxygen

.sig-content {
    font-size: 0.95em;

for example 0.95em; --> 0.5em;

ForkBB
I speak only Russian  :P

7

Re: Change body font size - Stylish Oxygen

Great!

I change to:

.sig-content{padding-top:2em;font-size:.65em}

And all are fine!

Thanks a lot for your help!