MyBB Community Forums

Full Version: How to change size of theme
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Does anyone know how to change the size of a theme from the big full screen to another smaller size?
ACP > Templates & Style > **choose theme** > global.css > choose #container from the list of classes > edit the width value. 700px would be fixed with, 70% would be fluid width.
If that doesn't work; try the width settings under #wrapper.
(2010-02-06, 01:07 PM)MattRogowski Wrote: [ -> ]ACP > Templates & Style > **choose theme** > global.css > choose #container from the list of classes > edit the width value. 700px would be fixed with, 70% would be fluid width.

Thanks, that worked!
-----EDIT:------
I've got another problem, on My Forum, the links are all messed up and they leave out the /forum.

The theme is Afresh Black made by Justin.S

Please what's the solution?
Have you hard coded links anywhere?? The forums work OK but the header links don't. What's your Board URL set to??
You have set the link in your header template into like this:

<a href="/index.php">

It should be like this:

<a href="{$mybb->settings['bburl']}/index.php">
Go to your acp and check that your config settings say board url = link to your forum
Plus, you have set another links in your header templates wrong (login, register, search, member list, calendar, help). Please make sure that you put this code before each links:

{$mybb->settings['bburl']}

Example:

<a href="{$mybb->settings['bburl']}/memberlist.php">

Or, at least put the link like this:

<a href="memberlist.php">

Not like this:

<a href="/memberlist.php">
We cannot help you as you are using another forum software, and you don't have the minimum link back to MyBB. To insert this link, go to your footer template and add

Powered by <a href="http://www.mybboard.net">MyBB</a>
Pages: 1 2