inherit
177448
0
Oct 27, 2014 15:02:28 GMT -8
Kin
4
March 2012
darkpoison
|
Post by Kin on Mar 16, 2013 7:01:30 GMT -8
waftesting.proboards.com/index.cgi
Adding in the MYO board mod code changes the width of the forum itself, though the banner seems unaffected. While it messes with my forum itself, the board modifications I made aren't showing up.
|
|
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 Mar 17, 2013 2:42:44 GMT -8
In your main footers, it looks like, remove this code:
<script type="text/javascript"> <!-- var td = document.getElementsByTagName('td'); for(i=0; i<td.length; i++) { if(td.colSpan=='2' && td.innerHTML.match(/Forum Name/)) { td.colSpan = '1'; } if(td.width=='8%' && td.className=='windowbg') { td.style.display='none'; }} // --> </script>
Also you need to go through your global footers especially and remove duplicate codes. You have two sets of the enhanced ubbc table code. Several copies of style codes. The one by iPokemon is an old version that had issues. The copy in the data base here is messed up due to ProBoards converting to V5 so I'd suggest you keep one copy of SubDevo's (you have two copies) and get rid of iPokemons. (If you are using classes in your posting tables and they are working o.k. then you can just keep iPokemons if you so choose, but keep in mind there were issues with it.
|
|
inherit
177448
0
Oct 27, 2014 15:02:28 GMT -8
Kin
4
March 2012
darkpoison
|
Post by Kin on Mar 17, 2013 9:52:41 GMT -8
Thanks! That got the MYO board mod working, but the forum's width is still squished in. It's supposed to be 730px wide, like the banner, but for some reason adding in the MYO board mod resulted in the squishing.
|
|
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 Mar 17, 2013 19:52:56 GMT -8
Try adding a forum width code to your global footers and it should be set at 100% like I did below: <script type="text/javascript"> <!-- var fWidth = ' 100%'; var table = document.getElementsByTagName('table'); for(t=0; t<table.length; t++) { if(table.item(t).width == "92%") { table.item(t).width = fWidth; } } // --> </script> Edit: You are also going to have to fix your site so the ads are not covered and even if you are paying for ad free but have them showing for guests, they need to show properly. It is against TOS to cover the ads in any way. First you need to add the blue to your existing css: html, body { height: 100%; margin-left: 200px; }
#sidebar { And then you'll need to find this and remove the red: <table width="730px" align="center" cellpadding="3px" cellspacing="0px" style="border-style: solid; border-width: 20px; border-color: #1e2121; padding: 15px; background-color:#3e5663; background-repeat: repeat; margin-left:300px; margin-top:-20px;"> <tr> <td vAlign="top"> And you need to remove this: <style type="text/css"> #rectangle_table { display:none; } </style>
You have some other div's in there with margin-left that may need to be tweeked. Not sure. Like I'm not sure what this is for: (found right below your side panel)
<div style="width: 300px; margin-left : 65px;" width="300">
|
|
inherit
177448
0
Oct 27, 2014 15:02:28 GMT -8
Kin
4
March 2012
darkpoison
|
Post by Kin on Mar 17, 2013 23:59:30 GMT -8
All fixed! Thank you very much for your help. That last bit of CSS was in there to fix the appearance of a repeating line of the title/menu/cat background image above the top of the forum border. Firebug pointed out the name as that, and pending a better fix, I've had that in place.
|
|
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 Mar 18, 2013 13:43:57 GMT -8
Glad it is fixed. Take care!
|
|