MyBB Community Forums

Full Version: I need help adjusting a MYBB theme.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I need help adjusting a MYBB theme.

I have a MYBB web site that I am seting up. I have a theme that I like. But it needs some modification. I need to know what php files (or others) that I need to adjust so that the frames and lay-outs of the items on the "new thread" page lines up. Here, I have some screen shots to show you what I mean:

http://www.fislam.com/wordpress-3.2.1/wo...lem_01.PNG

http://www.fislam.com/wordpress-3.2.1/wo...lem_02.PNG

http://www.fislam.com/wordpress-3.2.1/wo...lem_03.PNG

http://www.fislam.com/wordpress-3.2.1/wo...lem_04.PNG
That can be fixed with css. I'd be glad to help if you give us a link.
Do you mean a link to the forum? It is http://www.fislam.com/mybb_1610/Upload/index.php
You can use CSS to adjust the position of your frames and so on. Go to ACP>Templates & Styles>Themes>YOUR THEME>Global.css

However your frame or script must have a class defined in your templates so it could read the element(s) in your global.css stylesheet.
I fixed this bug.
I fixed it from the admin control panel for editing the css.
I edited the content from the theme's list.
I had to modify the css code in three groups:

New Thread
New Reply
Edit Post

This did the trick:

from
<textarea name="message" id="message" rows="20" cols="70" tabindex="3">
to
<textarea name="message" id="message" rows="20" cols="85" tabindex="3">

It was not in the global.css, but I still could not have figured this out so easily without your help here.