PDA

View Full Version : Changing size of forum_new48/old48 icons


Emeralda
02-14-2012, 11:46 AM
I'm talking about these: http://prntscr.com/64mf6 <- there is no space between the text now

It seems they are coded somewhere to so it's always 48px. I tried changing this: http://prntscr.com/64mty, but it affects height as well, creating too much vertical space. Trying to manually edit the template didn't seem to work at all: http://prntscr.com/64mte

Kraxell
02-14-2012, 12:08 PM
Hello,

ACP -> Stylevars -> forumicon_size

Emeralda
02-14-2012, 12:16 PM
Yeah, I've shown that on the second screenshot. When I changed it to 67, the width was ok, but then it was too high, creating extra space below the icon http://prntscr.com/64nq5

What I need, is a way to set height and width independently.

Kraxell
02-14-2012, 12:19 PM
than do that :D

width="50" height="50"

Emeralda
02-14-2012, 12:33 PM
Hmm, but where to insert it? It's not for <img> tag, because the image is showing proper proportions, but the column has a fixed width.

Kraxell
02-14-2012, 12:54 PM
forumhome_forumbit_level1_post

<img src="{vb:stylevar imgdir_statusicon}/{vb:raw forum.imageprefix}forum_{vb:raw forum.statusicon}-48.png" width="100" height="100" class="forumicon" id="forum_statusicon_{vb:raw forum.forumid}" alt="" />

forumhome_forumbit_level2_nopost

<img src="{vb:stylevar imgdir_statusicon}/category_forum_{vb:raw forum.statusicon}.png" width="100" height="100" class="forumicon" id="forum_statusicon_{vb:raw forum.forumid}" alt="" />

forumhome_forumbit_level2_post

<img src="{vb:stylevar imgdir_statusicon}/{vb:raw forum.imageprefix}forum_{vb:raw forum.statusicon}-48.png" width="100" height="100" class="forumicon" id="forum_statusicon_{vb:raw forum.forumid}" alt="" />

Emeralda
02-14-2012, 01:01 PM
The first two, no chanes: http://prntscr.com/64otn
Third one: http://prntscr.com/64ovo

So it's not about changing the image sizes, but the divs I think. I think the answer might be in the forumbits.css template, but there is no "width" for that, it's super complicated for me.