|
Post by tunescool on Nov 7, 2009 19:42:27 GMT -8
i want to put a repeating background image in the quick reply and info center. and the last 3 cells on the main page and the last 4 on the threads page. but in case i wanna change either one of them can you put a seperate "image url'' for each one with the main page and threads page being different ones. oh and if its not a problem one for that box i have around my google ads, thatd look goofy with that color hanging out down there. whenever, i just was thinking of it and wanted to get it the requests forum
|
|
|
Post by Wormopolis on Nov 7, 2009 19:48:39 GMT -8
|
|
|
Post by tunescool on Nov 7, 2009 20:14:54 GMT -8
yeap thanks
the quick reply message field i need too
|
|
|
Post by tunescool on Nov 10, 2009 2:40:24 GMT -8
i wanna add posting page windowbg and text area, seperate of course, and the quick reply text area. and i know i got 2 open requests rite now, but i put some tables in and your Info Center Part Relocation and they need adjusting that should be easy
|
|
|
Post by Wormopolis on Nov 12, 2009 7:05:19 GMT -8
I'm researching some CSS stuff that might work for this request.
|
|
|
Post by Wormopolis on Nov 14, 2009 4:49:48 GMT -8
ok.. so a lot is going on in this request because it seems like the list keeps growing.
currently I have:
1. last 3 cells of board lists on main page 2. last 4 cells of thread lists 3. infocenter cells 4. quick reply.. though you said the QR code I gave you doesnt work? 5. posting page cells? but which ones?
|
|
|
Post by tunescool on Nov 14, 2009 5:16:00 GMT -8
i said the quick reply worked above
1. last 3 cells of board lists on main page 2. last 4 cells of thread lists 3. infocenter cells 4. quick reply, quick reply text area, yours works, but wouldnt it be nice to have it all in one code? 5. posting page text area one background, and the rest of the page another 6. that box around my google ads <table width="800px" class="bordercolor" cellspacing="1" align="center"><tr><td class="windowbg2" align="center">
|
|
|
Post by Wormopolis on Nov 14, 2009 6:21:46 GMT -8
4. what if the textarea were transparent? would that better then a seperate image BG?
6. Im not sure that is allowed. I have to ask on PBS.
|
|
|
Post by tunescool on Nov 14, 2009 6:27:01 GMT -8
what do you mean by transparent, it just looks odd all white in the quick reply with the gray i have around it
|
|
|
Post by Wormopolis on Nov 14, 2009 8:44:07 GMT -8
transparent meaning you can see through it to the background behind it.
|
|
|
Post by tunescool on Nov 14, 2009 10:06:19 GMT -8
the background is black, i just wanna put a lite gray in there to get rid of that beaming white
|
|
|
Post by tunescool on Nov 22, 2009 5:38:01 GMT -8
will it make a difference if i use this code, or ever take it out
<script type="text/javascript"> <!-- /* combine posts/threads cells by hondarider */
var title = "Threads/Posts"; // text that will go on the title bar
if(!location.href.match(/action/) || location.href.match(/action=home/)){ td = document.getElementsByTagName("td"); for(i=0; i<td.length; i++){ if(td.width == "1%" && td.innerHTML.match(/Posts/i)){ td.style.display = "none"; td[i-1].innerHTML="<font class='titletext'>"+title+"</font>"; } if(td.width == "24%" && td.className == "windowbg2"){ td[i-1].style.display = "none"; td[i-2].innerHTML= "<b>"+td[i-1].firstChild.innerHTML+"</b> posts in<br><b>"+td[i-2].firstChild.innerHTML+"</b> threads"; } } } // --> </script>
|
|
|
Post by Wormopolis on Nov 23, 2009 19:31:26 GMT -8
ok.. Im working on this tonight and should hopefully have something soon.
|
|
|
Post by Wormopolis on Nov 27, 2009 19:15:59 GMT -8
this will do your Info Center:
<style type="text/css"> .ICreclass {background-image: url(http://www.poolhousevets.co.uk/companion_factfile_worms.jpg);} </style>
<script type="text/javascript"> <!-- // info center 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"; } }
// --> </script>
|
|
|
Post by Wormopolis on Nov 27, 2009 20:58:00 GMT -8
you need to fix this line in the SI boxed info center code:
TD[e+2].innerHTML= '<table cellpadding="4" cellspacing="1" class="bordercolor" width="100%"><tr><td class="windowbg" rowspan="3">Our community has made '+totalposts+' posts in '+totaltopics+' topics.</br>The last updated topic was '+lastpost+'.</br>It was posted by '+lastuser+' on '+lastdate+'.</br></td><td class="windowbg" rowspan="1" align="center">We have a total of <b>'+totalmembs+'</b> registered members.</td></tr><tr><td class="windowbg" align="center">Please welcome '+newmemb+', our newest member.</td></tr>';
|
|