inherit
244623
0
Aug 20, 2021 8:41:05 GMT -8
rainbowanemone
25
May 2017
rainbowanemone
|
Post by rainbowanemone on Jul 31, 2017 16:48:27 GMT -8
hhdhdhdhdhd.boards.net/Hello, I have the Bokeh Light Skin from Risa and would love help on just simply switching sides of the side bars. I'd like it to be on the right instead of the left, I thought it was just a simple switch but I have worked through the CSS and Forum wrapper for hours and just can't seem to figure it out. Any help would be great thank you.
|
|
inherit
I need a new CT, thinking.... [insert Jeopardy theme song here]
110769
0
Aug 21, 2021 0:07:21 GMT -8
Tumbleweed
20,825
September 2007
tumbleweed
|
Post by Tumbleweed on Jul 31, 2017 18:55:09 GMT -8
hhdhdhdhdhd.boards.net/Hello, I have the Bokeh Light Skin from Risa and would love help on just simply switching sides of the side bars. I'd like it to be on the right instead of the left, I thought it was just a simple switch but I have worked through the CSS and Forum wrapper for hours and just can't seem to figure it out. Any help would be great thank you. Did you download that theme from the ProBoards library or is that theme from somewhere else? Typically you should go to the creator of the theme to ask for help like that or if they would mind if you switched the side tables to be on the other side. By looking at your site, I can tell you that the whole forum and side tables is in a table and the first td tag has the side tables and the second td tag has the banner, forum & info center. I can't tell by looking at your site if she did this via the wrapper template or did it via the global headers and footers. So you'd basically have to copy that first tr tag and everything in it all the way down to include closing tr tag and move it so it is after the second tr tags closing tag. Here is a little mock up and I bolded the part that would need to be moved, so this.... <table id="Table_01" width="1000px" border="0" cellpadding="0" cellspacing="0" valign="top"> <tbody> <tr> <td rowspan="2" id="navigation" width="230" valign="top"> Side table stuff here </td> </tr>
<tr> <td id="main" valign="top"> Banner, forum, info center here </td> </tr></tbody> </table> Would become this..... <table id="Table_01" width="1000px" border="0" cellpadding="0" cellspacing="0" valign="top"> <tbody> <tr> <td id="main" valign="top"> Banner, forum, info center here </td> </tr> <tr> <td rowspan="2" id="navigation" width="230" valign="top"> Side table stuff here </td> </tr>
</tbody> </table> Mind you I only posted the table and not all the stuff that would be in the table and you'd have to be extra careful you put it in the right place. I don't know if this will help but if you do this, I'm hoping that is a test site you are doing it on.
|
|
inherit
244623
0
Aug 20, 2021 8:41:05 GMT -8
rainbowanemone
25
May 2017
rainbowanemone
|
Post by rainbowanemone on Aug 1, 2017 12:25:03 GMT -8
Thank you for your time C: I got this skin a while back I'm not sure if it was off of proboards or not im just now getting to using it but ill defiantly look and pm the creator to make sure it's ok.
I did what you explain expect it only moved the banner over and put the side tables at the bottom of the forum o.o i've triple checked to make sure I have it in the place you explained... I'll keep checking and try a few different things c: if you have any more information that could help it would be greatly appreciated ^_^ thank you again!
|
|
inherit
I need a new CT, thinking.... [insert Jeopardy theme song here]
110769
0
Aug 21, 2021 0:07:21 GMT -8
Tumbleweed
20,825
September 2007
tumbleweed
|
Post by Tumbleweed on Aug 1, 2017 22:11:40 GMT -8
Thank you for your time C: I got this skin a while back I'm not sure if it was off of proboards or not im just now getting to using it but ill defiantly look and pm the creator to make sure it's ok. I did what you explain expect it only moved the banner over and put the side tables at the bottom of the forum o.o i've triple checked to make sure I have it in the place you explained... I'll keep checking and try a few different things c: if you have any more information that could help it would be greatly appreciated ^_^ thank you again! Where did the theme creator have this? In the headers/footers or in the forum wrapper template? But do find out if this is o.k. first to make these changes. If the theme creator hasn't been online in ages (check their profile to see when online last), where ever you found this theme, and also check to make sure you don't see anything forbidding you to make changes, we can probably proceed but I'd then probably need you to send the code via pm and I'd then send the fixed code via pm as well, just out of respect of the creator even if they abandoned support for their themes.
|
|
inherit
244623
0
Aug 20, 2021 8:41:05 GMT -8
rainbowanemone
25
May 2017
rainbowanemone
|
Post by rainbowanemone on Aug 2, 2017 6:49:12 GMT -8
In the forum wrapper
While I was writing this reply I found it on a coding site, the creator was last online May 12th, I still sent them a pm in hopes whenever they get on they will see it, I checked theme information, forum wrapper/css and didn't see anything about editing but it seems editing the sidebar is fine from what I see the only information in the thread is:
"P.S. Editing the sidebar and the banner is in 'Forum Wrapper' template. Some things, like the layout of the boards is in 'Board List' template, as well as a few other templates that have been edited for style. Otherwise, most of the editing is in the advanced css. Have fun! Message me if you have any problems with it. All .zip files contain the pbt file and placeholder images for the themes. They are hosted on mediafire."
|
|
inherit
244623
0
Aug 20, 2021 8:41:05 GMT -8
rainbowanemone
25
May 2017
rainbowanemone
|
Post by rainbowanemone on Aug 3, 2017 6:12:19 GMT -8
Thank you so much! This has been completed!
|
|
inherit
I need a new CT, thinking.... [insert Jeopardy theme song here]
110769
0
Aug 21, 2021 0:07:21 GMT -8
Tumbleweed
20,825
September 2007
tumbleweed
|
Post by Tumbleweed on Aug 3, 2017 17:20:28 GMT -8
Thank you so much! This has been completed! You're welcome.
|
|