|
Post by tunescool on Dec 18, 2009 23:59:03 GMT -8
which code is this i cant find it
|
|
|
Post by Wormopolis on Dec 19, 2009 8:58:45 GMT -8
it is in your global footers somewhere. I got it from your source.
do a search for "TArestyle"
|
|
|
Post by tunescool on Dec 19, 2009 19:59:12 GMT -8
i changed the code, i seriously forgot what we were doing but i think it was the background in the pm and calender
|
|
|
Post by Wormopolis on Dec 19, 2009 20:34:50 GMT -8
yep. I think that closes this then?
|
|
|
Post by tunescool on Dec 19, 2009 21:31:46 GMT -8
yea it works
|
|
|
Post by tunescool on Dec 21, 2009 14:06:46 GMT -8
thre preview post page needs a windowbg image and input background
|
|
|
Post by Wormopolis on Dec 21, 2009 22:20:14 GMT -8
hmmm.. maybe this will simply it then...
change this: if (location.href.match(/action=(post|modifypost|pmsend|calendarpost)/)) {
to this: if (document.postForm) {
|
|
|
Post by tunescool on Dec 21, 2009 23:48:26 GMT -8
that did do the background but not the input
|
|
|
Post by Wormopolis on Dec 22, 2009 0:09:34 GMT -8
find this code:
EDIT: not sure where this code went, but you found it anyways.
change the if statement to the same thing.
|
|
|
Post by tunescool on Dec 22, 2009 0:39:07 GMT -8
theres a border around the thread title tho
|
|
|
Post by Wormopolis on Dec 22, 2009 8:37:38 GMT -8
put into the CSS
border:0
|
|
|
Post by tunescool on Dec 22, 2009 9:10:30 GMT -8
i tried border:0 and if (document.postForm) { document.write('<sty'+'le type="text/css"> input {background-image: url(http://i709.photobucket.com/albums/ww95/tunescool/nook/grey12.jpg);} ; border:0;} </sty'+'le>'); }
|
|
|
Post by Wormopolis on Dec 22, 2009 21:53:06 GMT -8
you did the CSS wrong:
if (document.postForm) { document.write('<sty'+'le type="text/css"> input {background-image: url(http://i709.photobucket.com/albums/ww95/tunescool/nook/grey12.jpg); border:0;}</sty'+'le>'); }
|
|
|
Post by tunescool on Dec 22, 2009 22:37:39 GMT -8
still a border
|
|
|
Post by Wormopolis on Dec 23, 2009 2:59:20 GMT -8
if this doesnt work then I have no idea how to do it:
change this:
<script type="text/javascript"> if (location.href.match(/board=|action=(pmsend|calendarpost)/)) { document.write('<sty' + 'le type="text/css"> INPUT {background-image: url(http://i709.photobucket.com/albums/ww95/tunescool/nook/grey12.jpg) ; border:none;} </sty' + 'le>'); if (document.postForm) { document.write('<sty'+'le type="text/css"> input {background-image: url(http://i709.photobucket.com/albums/ww95/tunescool/nook/grey12.jpg) ; border:0;}</sty'+'le>'); } } </script>
to this:
<script type="text/javascript"> if (document.postForm) { document.write('<sty'+'le type="text/css"> input {background-image: url(http://i709.photobucket.com/albums/ww95/tunescool/nook/grey12.jpg); border:0px;}</sty'+'le>'); } </script>
|
|