|
Post by Wormopolis on Jan 1, 2010 2:22:06 GMT -8
which one is the midtable and which one is the menutable?
I can tell you right now that you have a <br> tag after the cbox div. eliminate it.
|
|
|
Post by tunescool on Jan 1, 2010 3:20:04 GMT -8
the menu table is the 5 celled table, the mid table is the one with forum statistics in it
i cant find the br
|
|
|
Post by Wormopolis on Jan 1, 2010 4:25:56 GMT -8
<!-- END CBOX --><br/><style type="text/css">
|
|
|
Post by tunescool on Jan 1, 2010 5:18:10 GMT -8
thats my headers, theres no br there
|
|
|
Post by Wormopolis on Jan 1, 2010 13:54:33 GMT -8
it is there. I copied that directly FROM your headers.
|
|
|
Post by tunescool on Jan 1, 2010 18:37:15 GMT -8
|
|
|
Post by Wormopolis on Jan 1, 2010 22:24:39 GMT -8
well I dont know where that <br> is being inserted then...
this will need to go in footers then to delete it:
<script type="text/javascript"> document.getElementById('cboxdiv').nextSibling.style.display="none"; </script>
|
|
|
Post by tunescool on Jan 3, 2010 6:10:59 GMT -8
just incase i wasnt understood somewhere, i want the forum statistics table with the events in it connected to my 5 celled table. and i should just be able to put the cbox in and will just connect after those tables
|
|
|
Post by Wormopolis on Jan 3, 2010 6:31:35 GMT -8
get rid of this comment: <!-- END CBOX -->
if you want to move the cbox after the statistics table, you will need to but a div right after it with id="movecbox"
then put this in main header <script type="text/javascript"> document.getElementById('movecbox').appendChild(document.getElementById('cboxdiv')); </script>
|
|
|
Post by tunescool on Jan 3, 2010 6:48:58 GMT -8
im unsure about the div <!-- BEGIN CBOX - www.cbox.ws - v001 --> <div id="cboxdiv" style="text-align: center; line-height: 0"> <div><iframe frameborder="0" width="798" height="150" src="http://www7.cbox.ws/box/?boxid=264525&boxtag=n5cwh5&sec=main" marginheight="2" marginwidth="2" scrolling="auto" allowtransparency="yes" name="cboxmain" style="border:#9E7700 1px solid;" id="cboxmain"></iframe></div> <div><iframe frameborder="0" width="800" height="75" src="http://www7.cbox.ws/box/?boxid=264525&boxtag=n5cwh5&sec=form" marginheight="2" marginwidth="2" scrolling="no" allowtransparency="yes" name="cboxform" style="border:#9E7700 1px solid;border-top:0px" id="cboxform"></iframe></div> </div> <!-- id="movecbox" --> <script type="text/javascript"> document.getElementById('movecbox').appendChild(document.getElementById('cboxdiv')); </script>
|
|
|
Post by Wormopolis on Jan 3, 2010 15:41:38 GMT -8
I mean right after the code in your mainheader, for your statistics table, you need
<div id="movecbox"></div>
then that code
|
|
|
Post by tunescool on Jan 3, 2010 16:01:54 GMT -8
now how can i connect the statistics with the table above it
|
|
|
Post by Wormopolis on Jan 3, 2010 17:24:43 GMT -8
hmmm get rid of this: <!-- BEGIN CBOX - www.cbox.ws - v001 --> and change the code <script type="text/javascript"> document.getElementById('cboxdiv').nextSibling.style.display="none"; </script> to <script type="text/javascript"> document.getElementById('theNotableNook').nextSibling.style.display="none"; </script>
|
|
|
Post by tunescool on Jan 3, 2010 18:07:35 GMT -8
that didnt do it
|
|
|
Post by Wormopolis on Jan 3, 2010 22:20:31 GMT -8
it did. just not in FF.
<script type="text/javascript"> tst=document.getElementById('theNotableNook').nextSibling; if (tst.nodeName.match(/br/i)) tst.style.display="none"; else tst.nextSibling.style.display="none"; </script>
|
|