MyBB Community Forums

Full Version: Battlefield 3
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
in index template remove everything found inside <body></body> tag and paste following content (and don't forget to add forum and boarstats variables along with sidebar code.

<div class="forum_outline">
<div class="forum_container">
 <!--place forum and boardstats variables here-->
</div>
</div>

<div class="forum_sidebar">

<!--Place sidebar code here-->

</div>

in global.css add

.forum_outline {
   float: left;
   margin-right: -227px;
   width: 100%;
}
.forum_container {
   margin-right: 227px;
}

.forum_sidebar {
   display: block;
   float: right;
   width: 215px;
}

That's fricking amazing.. Suggestion: MAKE MORE THEMES LIKE THIS XD
Thank you got it!
i need a help to how to edit the box contents if i want to put more of them or to put somethiink inside them......also this theme is verry Smile thnxz for your sharing it
Hi

How can I fix the circled bugs and how can i change the size from the Editor?

http://s14.directupload.net/file/d/3316/...x8_jpg.htm
http://s7.directupload.net/file/d/3316/b7gqey4t_jpg.htm

Please Help Undecided
Hello,

thanks for the great theme, i just have a small problem with the high and with of the editor window. I overlaps with the first line of the options eg: "Signature: include your signature. (registered users only) "

I have checked Chrome and IE, both Browsers are up to date. It makes no diffrence if i switch between full and fixed width.

Screenshot: http://s14.directupload.net/images/130817/qtz627lv.jpg

Any Idea?

Thanks a lot

Patrick
^^ It occurs when your textarea has higher padding. There are several fixes for this.

Complex Method:
http://community.mybb.com/thread-75337.html

Simple method (as many others said):

in Templates > your template > New Reply Templates > newreply

change:

<textarea id="message" name="message" rows="20" cols="70" tabindex="2" >{$message}</textarea>

to:
<textarea id="message" name="message" rows="20" cols="100" tabindex="2" >{$message}</textarea>

Do same for
- new thread
- new reply
- edit post
- private send

The two methods I do use are:
1.
in all the templates mentioned, replace this:
rows="20" cols="100"

with this:
style="width: 100%; height: 300px"

2. ... and this is the most recommended technique (designer's standards):

open your global.css and find:
textarea {

add just after that:

    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
Nice! Can I mod/use this for my BF3/4 clan (of course, keeping the credit in the footer)?
Sure.You are free to edit it per your needs as long as "theme created by Johnny S" (with appropriate backlink) is kept.
By the way, this theme needs some updating... apparently, the image files are all stored under a bf3 folder, but all of the CSS and templates refer to a bf folder.

[edit] nevermind. i'm an idiot.
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17