Topic: PunBB forum has became smaller after inserting header img and pagelist

Hello,

could somebody help me why my punbb foum has became smaller after I inseted header image and page-list to main.tpl?
(You can check my problem at freehelp.hu/forum.)

What should I do in order that the forum become bigger again (the fonts can hardly be read).


Thank you very much for the helps or advices.

2 (edited by slickplaid 2009-02-07 13:47)

Re: PunBB forum has became smaller after inserting header img and pagelist

I'd actually have to go through all the css code to find the offending line but somehow a font-size of 11px is being applied to the body element and thus reducing the size of all the "em" sized text in the forum's css file.

At least that's what FireBug says.

Also, the forum is looking narrower because the #wrap div is set to 960px and the forum width is set to take up only 90% of that width.

To make the forum as wide as the banner, remove the

width: 90%;
and change
padding: 1.3em 2em; to padding: 1.3em 0;

in Oxygen.css and to fix the font size issue, change this

font:11px/18px Verdana, Arial, Helvetica, sans-serif;
to
font:1em/18px Verdana, Arial, Helvetica, sans-serif;

in your style.css file and it should be fixed.

3 (edited by diesel3 2009-02-08 11:22)

Re: PunBB forum has became smaller after inserting header img and pagelist

Thank you,

you are very professional...

The problems have been solved.


Thank you very much for the quick help again!

Re: PunBB forum has became smaller after inserting header img and pagelist

slickplaid wrote:

in your style.css file and it should be fixed.

For Oxygen style where is style.css?  Is it the same as oxygen.css?  I same same problem after adding header from my own website.  Very small font thoughout the forum.

Thank you

5 (edited by BrianC 2011-02-21 02:21)

Re: PunBB forum has became smaller after inserting header img and pagelist

BrianC wrote:

For Oxygen style where is style.css?  Is it the same as oxygen.css?  I same same problem after adding header from my own website.  Very small font thoughout the forum.

The problem was from something in other program's header that was using informtion from the main sites .css file.  Fixed now.  roll