Log in

View Full Version : Strange Oversizing Windows


dirkji
01-26-2007, 11:36 AM
The post message window of my forum oversizes in Firefox (not in IE):

http://www.jazzguitar.be/images/other/oversize.gif

I think it has to do with the large post icons. Which template do I have to alter to have the post icons appear in 5 columns instead of 7?

Cheers,

Dirk

dirkji
01-29-2007, 06:41 AM
Anyone that can help me?

peterska2
01-29-2007, 03:41 PM
in includes/functions_newpost.php

FIND

if ($numicons % 7 == 0 AND $numicons != 0)

REPLACE WITH

if ($numicons % 5 == 0 AND $numicons != 0)

That will set it to 5 icons per row, you might need to experiment with the number to get it just right but it should be a good starting point.

dirkji
01-30-2007, 09:11 AM
Thanks Kerry-Anne, that worked like a charm.

- Dirk