MyBB Community Forums

Full Version: Vertical columns..?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Okay, so I followed this tutorial: http://community.mybb.com/thread-32008.html
Which worked mostly

It seems to push it's parent forum name upwards as so
[Image: l8SeNMX.png]

I'm not sure how, or why this is happening, it'd be awesome to get a quick response. 
Thanks.
Formatting issues most probably in your templates, check the valign element in forumbit_display templates for Forumdescription section. It should be valign=middle
Tried that already, had no luck.
What is your forum link ?
http://globaloffenders.com/

You can login and try to fix it if you'd like, admin:test1234
if you are talking about the space between "memes" and "subforums" then its because of the line break (<br>) above the "subforums" in the forumbit_subforums template
That sort of fixed it.
However I want the "memes" text inline with the chat bubble icon, and the actual subforums text below.
How it looks without linebreak: 
[Image: gJOQmzy.png]

Essentially I need to push the entire text down about 10-15px

How can I achieve this?
check if this works, add this below piece of code to global.css

tbody[id^="cat_"] tr td.trow1:nth-child(2), tbody[id^="cat_"] tr td.trow2:nth-child(2) {padding-top: 15px;}

tbody[id^="cat_"] tr td.trow1:first-child, tbody[id^="cat_"] tr td.trow2:first-child {vertical-align: top;}

PS: you might have to Hard Refresh (Ctrl+F5) the forum couple of times to see the changes
That fixed it! Thank you so much!