Please or Register to create posts and topics.

Resizing the Forum display size

Hi,

Is there a way to resize the Forum, as it currently takes up most of the width of the screen?

I quite fancy the sizing options of the Forum on this website, its certainly more appealing.

Hello @daviddixon-one

The forum automatically uses the full width which is defined by your theme for the content-area. Please check out if the theme has some options which allows you to change the width which is used for its contents.

As a workaround you can also add a custom css-definition to theĀ Forum -> Appearance settings-section but I cant give you any guarantee that it will work fine:

#af-wrapper {
    width: 700px !important;
}

 

David Dixon has reacted to this post.
David Dixon
If you want to support the development of Asgaros Forum, you can leave a good review or donate. Thank you very much!

BRILLIANT!

That worked. One additional question (for this obvious novice), how do I center the forum display?

You can try it with the following code:

#af-wrapper {
    margin: 0 auto !important;
}

Not sure if it works because its the job of your theme to position it correctly. If not, please try to contact the developer of your theme for further advice.

David Dixon has reacted to this post.
David Dixon
If you want to support the development of Asgaros Forum, you can leave a good review or donate. Thank you very much!