inherit
208780
0
Sept 10, 2024 17:23:11 GMT -8
clemie
125
May 2014
clemie
|
Post by clemie on Jan 28, 2017 12:28:09 GMT -8
I'm using the skin called Lights Off by Jawn, Jawn left the site where I got this skin from and I have no way to ask them for help. I basically want to just code some side bars and add then, I don't wanna use the side bars plugin. However, anytime I try to add it to the Forum Wrapper it appears above the boards or below it doesn't go beside it like I want, does anyone know a way to make it go beside the boards? prntscr.com/e1kch5Thank you.
|
|
Former Member
inherit
guest@proboards.com
225992
0
Nov 28, 2024 19:45:32 GMT -8
Former Member
0
January 1970
Former Member
|
Post by Former Member on Jan 28, 2017 12:41:19 GMT -8
Have you tried add a .sidebar inside your /home template and not the /forum_wrapper template ?
|
|
inherit
208780
0
Sept 10, 2024 17:23:11 GMT -8
clemie
125
May 2014
clemie
|
Post by clemie on Jan 28, 2017 13:04:55 GMT -8
Yes I did, it either put it above or copied it between each board.
|
|
Former Member
inherit
guest@proboards.com
225992
0
Nov 28, 2024 19:45:32 GMT -8
Former Member
0
January 1970
Former Member
|
Post by Former Member on Jan 28, 2017 13:21:29 GMT -8
You need to wrap the content into a main and sidebar section
Code is not complete but, should show you how to try your hand at it, you will also need to write the css for it to work.
<div class='custom-container'>
<section class='main'> {foreach $[category]} $[category.anchor] <div class="container boards"> <div class="title-bar bbcode"> <h2><div class="title_wrapper">$[category.display_name]</div></h2> </div> <div class="content cap-bottom"> $[category.board_list] </div> </div> {/foreach}
<!-- add additional stuff here... --> </section>
<aside class='sidebar'> $[news]
<!-- add additional stuff you want in sidebar here... --> </aside>
</div><!-- /.custom container -->
|
|
inherit
208780
0
Sept 10, 2024 17:23:11 GMT -8
clemie
125
May 2014
clemie
|
Post by clemie on Jan 28, 2017 13:36:41 GMT -8
The side bar is where I want it to be now but prntscr.com/e1l8i5It pushed everything to the side and if I try to stretch the "Forum Width" prntscr.com/e1l9boIt just stretches but doesn't fix the boards.
|
|
Former Member
inherit
guest@proboards.com
225992
0
Nov 28, 2024 19:45:32 GMT -8
Former Member
0
January 1970
Former Member
|
Post by Former Member on Jan 28, 2017 13:40:55 GMT -8
can you link to the site? I would need to inspect the code
|
|
inherit
208780
0
Sept 10, 2024 17:23:11 GMT -8
clemie
125
May 2014
clemie
|
Post by clemie on Jan 28, 2017 13:46:26 GMT -8
|
|
Former Member
inherit
guest@proboards.com
225992
0
Nov 28, 2024 19:45:32 GMT -8
Former Member
0
January 1970
Former Member
|
Post by Former Member on Jan 28, 2017 14:06:51 GMT -8
It could be any number of conflicting things.
Again I would need to see the actual theme source and how you currently have the sidebar to offer any additional help.
I would just be guessing at this point.
You could have and element called .main, or .sidebar or any other number of selectors contributing to the behavior you are seeing. Have you tried debugging it yourself in browser developer tools?
|
|