inherit
221284
0
Dec 9, 2018 14:20:34 GMT -8
frogger007
3
May 2015
frogger007
|
Post by frogger007 on May 11, 2015 13:40:41 GMT -8
My site: ahogwart.proboards.com/Is there a way to modify this code to place these boxes on the left side of the board? </td> <td width="15%" vAlign="top" align="center"> <br /> <br /> <table class="bordercolor" width="92%" cellpadding="4" cellspacing="1"> <tr> <td class="titlebg" align="center" width="100%"> <font size=2>Menu</font> </td> </tr> <tr> <td class="windowbg" align="center"> <font size=2>Top Box Content</font> </td> </tr> <tr> <td class="windowbg2" align="center"> <font size=2>Middle Box Content</font> </td> </tr> <tr> <td class="windowbg" align="center"> <font size=2>Bottom Box Content</font> </td> </tr> </table> </td> </tr> </table> <style type="text/css"> <!-- .mp_stats { width: 75%; margin-top: 10px; } .mp_stats td { border-color: #000000; border-style: solid; border-width: 1px; } --> </style>
<script> if ( proboards.data('route').name != "home" ){
$('#LPouter').hide();
} </script> Thanks
|
|
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 May 11, 2015 15:49:34 GMT -8
My site: ahogwart.proboards.com/Is there a way to modify this code to place these boxes on the left side of the board? ---removed code--- Thanks There is a plug-in for side tables that will work better. You can find the plugin in by visiting your admin panel and then the plugin library. Look for Sidebar Redux. You can download it straight to your site.
I could however, fix that code but as it is, none of classes would work on it and it is missing the opening table tag.
Here is a updated code using div's instead of a table with css to style it. It should pick up your theme colors:
<style> #my_sidebar{ position:absolute; top:100px; left:0px; width:200px; text-align:center; } .my_boxes{ padding:4px; display:inline-block; vertical-align:top; font-size:10px; } </style>
<div class="container boards" id="my_sidebar"> <div class="title-bar bbcode"><center>Menu</center></div> <div class="content cap-bottom">
<div id="my_boxes"> First box content </div> <div id="my_boxes"> Middle Box Content </div> <div id="my_boxes"> Bottom Box Content </div>
</div> </div>
|
|
inherit
221284
0
Dec 9, 2018 14:20:34 GMT -8
frogger007
3
May 2015
frogger007
|
Post by frogger007 on May 12, 2015 12:13:13 GMT -8
Thank you sir for your services once 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 May 12, 2015 15:12:11 GMT -8
Thank you sir for your services once again....... Your welcome. But I may have to put lipstick on my tumbleweed. ha ha ha...take care.
|
|