|
Post by tunescool on Aug 30, 2009 0:54:46 GMT -8
for admin id like bookmarks and so on rite next to each other on the same cell as long as whatever fits. the next options in another cell for each option id like it to say bookmark, disable smileys, lock, sticky, announcement
for members id like it to say bookmark and disable smilies
|
|
|
Post by Wormopolis on Aug 30, 2009 1:50:29 GMT -8
so basically.. just get rid of the divider bar...
lets see what happens...
|
|
|
Post by Wormopolis on Aug 30, 2009 2:09:10 GMT -8
like that?
|
|
|
Post by tunescool on Aug 30, 2009 2:35:00 GMT -8
i want the line for different cells if there is one, it looks to me it would be 2 cells. you asked like that, but nothing is different in your thread and you didnt post any code
|
|
|
Post by Wormopolis on Aug 30, 2009 3:26:22 GMT -8
when you made a post, you didnt see the cells merged?
|
|
|
Post by tunescool on Aug 30, 2009 12:23:54 GMT -8
|
|
|
Post by Wormopolis on Aug 30, 2009 14:10:54 GMT -8
yeah.. each thing is in one cell..
maybe I dont understand the request?
|
|
|
Post by tunescool on Aug 30, 2009 16:16:18 GMT -8
first cell -- box, bookmark - box, disable smileys - box, lock - box, sticky - box, announcement
members -- box, bookmark box, - disable smilies
exactly what i have written for each box, no comma call the cell options
|
|
|
Post by Wormopolis on Aug 30, 2009 18:25:21 GMT -8
ok I get it now...
|
|
|
Post by Wormopolis on Aug 30, 2009 21:06:36 GMT -8
first cell -- box, bookmark - box, disable smileys - box, lock - box, sticky - box, announcement members -- box, bookmark box, - disable smilies exactly what i have written for each box, no comma call the cell options look now
|
|
|
Post by Wormopolis on Aug 30, 2009 21:07:09 GMT -8
test
|
|
|
Post by tunescool on Aug 30, 2009 21:40:10 GMT -8
thats it can you make the font smaller and you didnt name it options
|
|
|
Post by Wormopolis on Aug 30, 2009 21:43:48 GMT -8
the cell they are in has the id options. you can use CSS like this:
#options font {font-size: 10; color: 00FF00}
|
|
|
Post by Wormopolis on Aug 30, 2009 21:47:43 GMT -8
<style type="text/css"> #options font {font-size:8; color:00FF00;} </style>
<script type="text/javascript"> <!-- // posting page checkboxes merge // by Wormopolis
if (location.href.match(/thread=260/) && document.postForm) {
placehold=document.postForm.counter.parentNode.parentNode; nwrw=placehold.parentNode.insertRow(placehold.rowIndex+1); nwcl=nwrw.insertCell(0); nwcl.colSpan=2; nwcl.id="options"; nwcl.className="windowbg2"; spacer=document.createTextNode(" ");
if (document.postForm.notify) { cls=document.postForm.notify.parentNode; nwcl.appendChild(cls.firstChild); cls.parentNode.firstChild.innerHTML=cls.parentNode.firstChild.innerHTML.replace(/\:/,''); nwcl.appendChild(cls.parentNode.firstChild.firstChild); nwcl.appendChild(spacer.cloneNode(true)); cls.parentNode.style.display="none"; } if (document.postForm.nosmiles) { cls=document.postForm.nosmiles.parentNode; nwcl.appendChild(cls.firstChild); cls.parentNode.firstChild.innerHTML=cls.parentNode.firstChild.innerHTML.replace(/\:/,''); nwcl.appendChild(cls.parentNode.firstChild.firstChild); nwcl.appendChild(spacer.cloneNode(true)); cls.parentNode.style.display="none"; } if (document.postForm.lock) { cls=document.postForm.lock.parentNode; nwcl.appendChild(cls.firstChild); cls.parentNode.firstChild.innerHTML=cls.parentNode.firstChild.innerHTML.replace(/\:/,''); nwcl.appendChild(cls.parentNode.firstChild.firstChild); nwcl.appendChild(spacer.cloneNode(true)); cls.parentNode.style.display="none"; } if (document.postForm.sticky) { cls=document.postForm.sticky.parentNode; nwcl.appendChild(cls.firstChild); cls.parentNode.firstChild.innerHTML=cls.parentNode.firstChild.innerHTML.replace(/\:/,''); nwcl.appendChild(cls.parentNode.firstChild.firstChild); nwcl.appendChild(spacer.cloneNode(true)); cls.parentNode.style.display="none"; } if (document.postForm.announcements) { cls=document.postForm.announcements.parentNode; nwcl.appendChild(cls.firstChild); cls.parentNode.firstChild.innerHTML=cls.parentNode.firstChild.innerHTML.replace(/\:/,''); nwcl.appendChild(cls.parentNode.firstChild.firstChild); nwcl.appendChild(spacer.cloneNode(true)); cls.parentNode.style.display="none"; } } // --> </script>
|
|
|
Post by Wormopolis on Aug 30, 2009 21:53:35 GMT -8
actually... use this one.. its more compact:
<style type="text/css"> #options font {font-size:8; color:00FF00;} </style>
<script type="text/javascript"> <!-- // posting page checkboxes merge // by Wormopolis
if (document.postForm) {
placehold=document.postForm.counter.parentNode.parentNode; nwrw=placehold.parentNode.insertRow(placehold.rowIndex+1); var nwcl=nwrw.insertCell(0); nwcl.colSpan=2; nwcl.id="options"; nwcl.className="windowbg2"; spacer=document.createTextNode(" ");
function comp(vict) { cls=vict.parentNode; nwcl.appendChild(cls.firstChild); cls.parentNode.firstChild.innerHTML=cls.parentNode.firstChild.innerHTML.replace(/\:/,''); nwcl.appendChild(cls.parentNode.firstChild.firstChild); nwcl.appendChild(spacer.cloneNode(true)); cls.parentNode.style.display="none"; }
if (document.postForm.notify) comp(document.postForm.notify); if (document.postForm.nosmiles) comp(document.postForm.nosmiles); if (document.postForm.lock) comp(document.postForm.lock); if (document.postForm.sticky) comp(document.postForm.sticky); if (document.postForm.announcements) comp(document.postForm.announcements);
} // --> </script>
|
|