inherit
183482
0
Dec 17, 2015 17:39:35 GMT -8
Nevada Mikado
Your soul is mine
170
September 2012
nevam
|
Post by Nevada Mikado on Nov 9, 2012 10:13:00 GMT -8
I was just wondering if there is any way to move the side bar so that it's beside the welcome banner instead of under it... and perhaps a way to show/hide it yet?
|
|
inherit
183482
0
Dec 17, 2015 17:39:35 GMT -8
Nevada Mikado
Your soul is mine
170
September 2012
nevam
|
Post by Nevada Mikado on Nov 18, 2012 8:24:47 GMT -8
Another Question:
Is there a way to Justify text in the side bar? I tried doing it with HTML and it didn't work.
|
|
inherit
173855
0
Apr 23, 2024 9:59:44 GMT -8
Texas
I check in every once in a while...
869
November 2011
petermaggio
|
Post by Texas on Nov 25, 2012 14:05:38 GMT -8
Okay, First go to the plugins section and click build, then open probaords sidebar. After you open the plugin look for the tab that says components and click on that. You should see two boxes with coding in them. The fist one says javascript and the second css.
Now fallow these instructions.
First question: In the box that says JavaScript, look for this line
$('#content').wrap('<div id="sidebar_div"><div class="sidebar_main_content"></div></div>');
It should be on line 5.
Change ('#content') to ('header') and that should put the boxes around the welcome banner.
Second question: In the css box, look at the last line of code, it should be
.sidebar .content { padding: 5px; text-align: center;}
add "text-align: center;" to this line
Like so .sidebar .content { padding: 5px; text-align: center;}
|
|
inherit
163839
0
May 25, 2017 20:48:34 GMT -8
Maiden
1,020
February 2011
dreamaiden
|
Post by Maiden on Nov 26, 2012 8:57:23 GMT -8
Do you know what I have to do to the code to make it so that the sidebars don't introduce an extra scroll bar when they're longer than the forum?
|
|
inherit
173855
0
Apr 23, 2024 9:59:44 GMT -8
Texas
I check in every once in a while...
869
November 2011
petermaggio
|
Post by Texas on Nov 26, 2012 10:52:25 GMT -8
To do that you will have to edit each stylesheet.
Admin >> Themes >> Colors and Styles >> Style Sheet
Then hit ctrl f and input "wrapper" into the little search bar. Keep clicking next until it takes you too this line #wrapper { width: @wrapper_width; margin: 0 300px; overflow-x: auto; }
It should be the second one. And change "overflow-x: auto" to "overflow: visible"
You will have to do this on every one of your themes.
|
|
inherit
183482
0
Dec 17, 2015 17:39:35 GMT -8
Nevada Mikado
Your soul is mine
170
September 2012
nevam
|
Post by Nevada Mikado on Nov 26, 2012 12:50:37 GMT -8
Thank you for your help, I did actually find a html that worked for justifying the text, but the moving it to the header thing is what I really needed so Thank you again!
|
|