Quote:
Originally Posted by kontagio.us
Hey, I was wondering how to re-size this column on Forumhome. I can't find the template to edit. It shrinks too small when I enable forum blocks. I don't know if it would be better to make it a larger % or a fixed size?

|
Add the below code to your additional.css template.
Code:
.forumbit_post .foruminfo {
width: 57%;
}
.forumbit_post .forumactionlinks {
width: 5%;
}
.forumbit_post .forumstats, .forumbit_post .forumstats_2 {
width: 12%;
}
.forumbit_post .forumrow .forumlastpost {
width: 22%;
}
The ".forumbit_post .forumstats, .forumbit_post .forumstats_2" is the declaration block for the thread/post count column. By default it is 12%. If you change it to say, 17%, make sure to subtract 5% from another column. I suggest setting the ".forumbit_post .foruminfo" to 52%.