inherit
22402
0
Nov 8, 2021 11:42:58 GMT -8
DeltaDart
Ultimate Interceptor
522
April 2004
mcgeep
|
Post by DeltaDart on Feb 7, 2013 20:55:01 GMT -8
Is there a way to align the forum to either the left or right side of the screen?
|
|
inherit
(??_?)
181912
RIP RIP RIP Almost RIP - Why does this social section still exist?
0
1
Jul 6, 2015 20:35:17 GMT -8
CheatAreZee
56,804
March 2005
zyvoloski
Ricky's Mini-Profile
|
Post by CheatAreZee on Feb 9, 2013 14:43:52 GMT -8
Hi DeltaDart, This is indeed possible. To do this, visit your admin panel then navigate to Themes > Colors & Styles. On the next page, click the Style Sheet tab. Around line 126, find the line for #wrapper, which by default would read as: #wrapper { width: @wrapper_width; margin: 0 auto; overflow-x: hidden; } If you want to make the forum align to the left, add in the position and left attributes like so: #wrapper { width: @wrapper_width; position: absolute; left: 0; margin: 0 auto; overflow-x: hidden; } To make the forum align to the right, add in the position and right attributes like so: #wrapper { width: @wrapper_width; position: absolute; right: 0; margin: 0 auto; overflow-x: hidden; } Hope this helps
|
|
inherit
22402
0
Nov 8, 2021 11:42:58 GMT -8
DeltaDart
Ultimate Interceptor
522
April 2004
mcgeep
|
Post by DeltaDart on Feb 9, 2013 15:31:25 GMT -8
|
|
inherit
Jack of All Trades, Master of None
27090
0
May 30, 2013 20:36:34 GMT -8
Stinky666
8,818
July 2004
stinky666
|
Post by Stinky666 on Feb 9, 2013 15:43:28 GMT -8
Hi DeltaDart, This is indeed possible. To do this, visit your admin panel then navigate to Themes > Colors & Styles. On the next page, click the Style Sheet tab. Around line 126, find the line for #wrapper, which by default would read as: #wrapper { width: @wrapper_width; margin: 0 auto; overflow-x: hidden; } If you want to make the forum align to the left, add in the position and left attributes like so: #wrapper { width: @wrapper_width; position: absolute; left: 0; margin: 0 auto; overflow-x: hidden; } To make the forum align to the right, add in the position and right attributes like so: #wrapper { width: @wrapper_width; position: absolute; right: 0; margin: 0 auto; overflow-x: hidden; } Hope this helps Hi Ricky. Thanks for the above, however it says Syntax Error when I attempt it #wrapper { background-color: #1a1918; box-shadow: 0px 0px 30px rgba(0,0,0,0.5); width: @wrapper_width; absolute; right: 0; margin: 0 auto; overflow-x: hidden; } .wrapper2 { margin: 0 auto; width: 94%; } I did also try add it to .wrapper, but that made no difference. Any suggestions?
|
|
inherit
22402
0
Nov 8, 2021 11:42:58 GMT -8
DeltaDart
Ultimate Interceptor
522
April 2004
mcgeep
|
Post by DeltaDart on Feb 9, 2013 15:46:18 GMT -8
It worked for me. I went with align right and am asking my members now what they think.
|
|
inherit
Jack of All Trades, Master of None
27090
0
May 30, 2013 20:36:34 GMT -8
Stinky666
8,818
July 2004
stinky666
|
Post by Stinky666 on Feb 9, 2013 15:48:51 GMT -8
It worked for me. I went with align right and am asking my members now what they think. I guess it could be because I have two forum wrappers so I need to edit both? But then it only gives me the error for line 128 - which is where the above wrapper is, that I added it to. Edit: Never mind, it works now. I missed out the word "position:" lol
|
|
inherit
22402
0
Nov 8, 2021 11:42:58 GMT -8
DeltaDart
Ultimate Interceptor
522
April 2004
mcgeep
|
Post by DeltaDart on Feb 9, 2013 15:59:34 GMT -8
It worked for me. I went with align right and am asking my members now what they think. I guess it could be because I have two forum wrappers so I need to edit both? But then it only gives me the error for line 128 - which is where the above wrapper is, that I added it to. Edit: Never mind, it works now. I missed out the word "position:" lol
|
|