|
Post by Wormopolis on Dec 2, 2009 16:31:38 GMT -8
that wasnt what you wanted? what do you want to do with the textareas then?
that last code also was supposed to change cell classes on trhe posting page.
|
|
|
Post by tunescool on Dec 2, 2009 19:31:58 GMT -8
this is what happens when i put the code in
|
|
|
Post by Wormopolis on Dec 2, 2009 19:57:21 GMT -8
yeah I knew it would do that if it was transparent. you said you didnt want it to be white. what do you want to do with the textareas then?
|
|
|
Post by tunescool on Dec 2, 2009 20:26:07 GMT -8
i want the same backgound i have for the main page and everything else
|
|
|
Post by Wormopolis on Dec 2, 2009 20:57:41 GMT -8
if you have a specific image:
.TArestyle{background-image: url(URL);}
|
|
|
Post by tunescool on Dec 2, 2009 21:21:03 GMT -8
alrite, just the posting page is left, i want to have that the darker gray, the window background, not the text area
|
|
|
Post by Wormopolis on Dec 2, 2009 21:58:05 GMT -8
<script type="text/javascript"> for (ta=document.getElementsByTagName('textarea'),t=0;t<ta.length; t++) { if (ta[t].name=='message' && !ta[t].parentNode.parentNode.width=='70%') ta[t].className+=' TArestyle'; } if (location.href.match(/action=post/)) { for (tds=document.getElementsByTagName('td'),s=0;s<tds.length; s++) { if (tds.className=='windowbg') tds.className+=' PostWindBGrestyle'; } } </script>
|
|
|
Post by tunescool on Dec 2, 2009 22:15:42 GMT -8
what do i use for a stylesheet
|
|
|
Post by Wormopolis on Dec 2, 2009 23:21:32 GMT -8
same style class as the others. background-image
|
|
|
Post by tunescool on Dec 2, 2009 23:37:42 GMT -8
what is this in my table and subject thread i cant get the posting page stylesheet rite
|
|
|
Post by Wormopolis on Dec 3, 2009 2:40:07 GMT -8
that was just some URL of an image I threw in for testing. you are supposed to change it to what you want. it was PostWindBGrestyle style.
|
|
|
Post by tunescool on Dec 3, 2009 4:38:29 GMT -8
i dont have any other address in there
<style type="text/css"> .ICreclass {background-image: url(http://i709.photobucket.com/albums/ww95/tunescool/nook/grey12.jpg);} .boardcells {background-image: url(http://i709.photobucket.com/albums/ww95/tunescool/nook/grey12.jpg);} .threadcells {background-image: url(http://i709.photobucket.com/albums/ww95/tunescool/nook/grey12.jpg);} </style>
<script type="text/javascript"> <!-- // info center/board/thread cell reclass for (tds=document.getElementsByTagName('td'), i=0; i<tds.length; i++) { if (tds.className=='catbg' && tds.innerHTML.match(/(forum statistics|today's birthdays|users online|active users|events this month)/i)) { tds.parentNode.nextSibling.firstChild.className+=" ICreclass"; tds.parentNode.nextSibling.firstChild.nextSibling.className+=" ICreclass"; } if (tds.className.match(/windowbg/) && tds.width.match(/^(1|23|24)%/)) { tds.className+=' boardcells'; } if (tds.className.match(/windowbg/) && tds.width.match(/^(4|14|20)%/)) { tds.className+=' threadcells'; } }
// --> </script>
<style type="text/css"> .TArestyle{background-image: url(http://i709.photobucket.com/albums/ww95/tunescool/nook/grey12.jpg);} </style>
<script type="text/javascript"> for (ta=document.getElementsByTagName('textarea'),t=0;t<ta.length; t++) { if (ta[t].name=='message') ta[t].className+=' TArestyle'; } if (location.href.match(/action=post/)) { for (tds=document.getElementsByTagName('td'),s=0;s<tds.length; s++) { if (tds.className=='windowbg') ta[t].className+=' PostWindBGrestyle'; } } </script>
<style type="text/css"> {background-image: url(http://i709.photobucket.com/albums/ww95/tunescool/nook/grey12.jpg);} </style>
<script type="text/javascript"> for (ta=document.getElementsByTagName('textarea'),t=0;t<ta.length; t++) { if (ta[t].name=='message' && !ta[t].parentNode.parentNode.width=='70%') ta[t].className+=' TArestyle'; } if (location.href.match(/action=post/)) { for (tds=document.getElementsByTagName('td'),s=0;s<tds.length; s++) { if (tds.className=='windowbg') tds.className+=' PostWindBGrestyle'; } } </script>
|
|
|
Post by Wormopolis on Dec 3, 2009 5:26:02 GMT -8
you deleted the classname from the CSS
<style type="text/css"> {background-image: url(http://i709.photobucket.com/albums/ww95/tunescool/nook/grey12.jpg);} </style>
should be
<style type="text/css"> .PostWindBGrestyle {background-image: url(http://i709.photobucket.com/albums/ww95/tunescool/nook/grey12.jpg);} </style>
|
|
|
Post by Wormopolis on Dec 3, 2009 5:27:56 GMT -8
get rid of the one in red
|
|
|
Post by tunescool on Dec 3, 2009 5:48:31 GMT -8
im sorry for all the confusion, i replaced what you said i want the whole page a different background, not the table
|
|