|
Post by frankk on Oct 20, 2005 17:01:29 GMT -5
Hi i just want to know how can i resize the tables of my forum to 600 and how can i remove the text in the title and put a logo 600x 150 .... I read everything nothing talk about that please help me !
|
|
|
Post by Bradley on Oct 20, 2005 17:17:27 GMT -5
Hi i just want to know how can i resize the tables of my forum to 600 and how can i remove the text in the title and put a logo 600x 150 .... I read everything nothing talk about that please help me ! swg.proboards4.com/index.cgi?board=codes&action=display&n=1&thread=1082Admin -> Skins / Forum Colors -> Modify Skin -> Pick a Skin -> and the image URL in the box labeld "Logo URL".
|
|
|
Post by frankk on Oct 20, 2005 17:35:23 GMT -5
Thanks , and how can i center it after ? and do you know if i can out those ads compeltly at the bottom or completly at the top not separating the logo from the forum
|
|
|
Post by Bradley on Oct 20, 2005 20:00:56 GMT -5
|
|
|
Post by frankk on Oct 20, 2005 23:16:59 GMT -5
Well my forum is not center since i resized it longswordman.proboards31.comAnd i dont want to remove the ads , i want them to be at top or bottom , not in the middle like that ...
|
|
|
Post by Bradley on Oct 21, 2005 18:52:40 GMT -5
If you mean the actual forum copy the code exactly as it is and only modify what it says to. More to come...
|
|
|
Post by frankk on Oct 22, 2005 1:09:57 GMT -5
If you mean the actual forum copy the code exactly as it is and only modify what it says to. More to come... ??
|
|
|
Post by Bradley on Oct 22, 2005 20:17:52 GMT -5
This:
<script type="text/javascript"> <!-- tables = document.getElementsByTagName('table'); for(t=0;t<tables.length;t++){ if(tables[t].width=="100%"){ tables[t].width = '725'; }} // --> </script>
Should be this:
<script type="text/javascript"> <!-- tables = document.getElementsByTagName('table'); for(t=0;t<tables.length;t++){ if(tables[t].width=="92%"){ tables[t].width = '725'; }} // --> </script>
Try this to move the ads to the top, headers:
<script type="text/javascript"> <!-- document.write("<div id='welcometable'></div>"); var wTable = document.getElementsByTagName("TABLE")[0]; wTable.parentNode.removeChild(wTable); wTable.style.marginTop="25px"; document.body.replaceChild(wTable,document.getElementById('welcometable')); //--> </script>
|
|
|
Post by frankk on Oct 25, 2005 0:20:13 GMT -5
Thank you
|
|