|
Post by Michael on Nov 28, 2005 22:19:32 GMT -5
I know this seem very. . . extreme, but I need all the codes that I'll have to use in order to show a template. I can't seem to find what I am looking for. After not fooling around in some code because of deleting my board I believe that I've degressed. lol... So if anyone would like to take some time. . . please post the codes I'll need.
|
|
|
Post by matthew on Nov 28, 2005 23:17:24 GMT -5
What codes do you want? these are some basic ones I use this code (in the headers) to center the banner, remove the welcome message, and <home>, in the logo table. <script language=javascript> <!-- var PMLogoCell = document.getElementsByTagName("TD")[1]; PMLogoCell.removeChild(PMLogoCell.lastChild) document.getElementsByTagName('tr')[1].deleteCell(1); --> </script> And I use this code to change the width of the forum, which goes in the footers <script language="JavaScript"> var boardwidth = document.getElementsByTagName('TABLE'); for(i=0;i<boardwidth.length;i++) { if(boardwidth .width=="92%"){ boardwidth.width='695 px';}} </script>
you change the part in red to change the forum width.
I also use some css to change the style of the forum.
I use this for the scroll bar
<style type="text/css"> <!-- body { scrollbar-arrow-color: #Colour Code Here; scrollbar-track-color:#Colour Code Here; scrollbar-3dlight-color:#Colour Code Here; scrollbar-highlight-color:#Colour Code Here; scrollbar-face-color:#Colour Code Here; scrollbar-darkshadow-color:#Colour Code Here; scrollbar-shadow-color:#Colour Code Here; }
</style>
These I use for the Menu, Title, Category, and News Title. gradients/images.
<style type="text/css"> <!--
.newstitlebg { background-image: url(TITLE_NEWS_MENU IMAGE URL HERE); background-repeat: repeat; }
.titlebg { background-image: url(TITLE_NEWS_MENU IMAGE URL HERE); background-repeat: repeat; }
.catbg { background-image: url(CAT IMAGE URL GOES HERE); background-repeat: repeat; }
.menubg { background-image: url(TITLE_NEWS_MENU IMAGE URL HERE); background-repeat: repeat; }
</style>
And I use this to center my background images because i use vertical borders alot
<style type="text/css"> <!--
background-position:center top; background-repeat:repeat-y;
</style>
|
|
|
Post by Michael on Nov 29, 2005 22:13:50 GMT -5
Thank you so much, M@. lol... need to get back into this stuff. lol... Oh, and btw, sorry about posting in the wrong board, I just now realized I did. But thank you though! *nods*
|
|
|
Post by matthew on Nov 29, 2005 23:30:26 GMT -5
Oh, and btw, sorry about posting in the wrong board, I just now realized I did. But thank you though! *nods* hehe i didn't even notice, but i guess it's kindofasupport question too ..and no problem
|
|