|
Post by tunescool on Oct 17, 2009 16:51:02 GMT -8
i took convert buttons to text out cause i finally found buttons that worked for me, which changed the color of the page jump and now theyre back to white. its hard to see with my pink. and change it to bold
|
|
|
Post by Wormopolis on Oct 17, 2009 20:09:00 GMT -8
this should find them...
<style type="text/css"> .pagejump {font-weight: bold; color: 00FF00;} </style>
<script type="text/javascript"> for (spn=document.getElementsByTagName('span'), s=0; s<spn.length; s++) { if (spn.className=='pagejump') { spn.parentNode.className='pagejump'; } } </script>
|
|
|
Post by tunescool on Oct 17, 2009 20:21:33 GMT -8
it only made it up to here Page 1 of
|
|
|
Post by Wormopolis on Oct 17, 2009 20:59:15 GMT -8
move it to the bottom of global footer
|
|
|
Post by tunescool on Oct 17, 2009 21:45:43 GMT -8
Page 1 of (7 ») Page
the 7 and arrow next to it are still white, and the Go link
|
|
|
Post by Wormopolis on Oct 17, 2009 23:46:15 GMT -8
yep. thats because your default CSS has that color for links.
<style type="text/css"> .titletext, .pagejump, .pagejump a {font-weight: bold; color: 00FF00;} </style>
should catch it.
|
|
|
Post by tunescool on Oct 18, 2009 0:12:13 GMT -8
everything except the 7 now
now that i have the member group, it just shows "Members" in place of rank, so i decided to take rank and stars out. rank im not sure about, but i wanna keep my administrator title. what can i do
|
|
|
Post by Wormopolis on Oct 18, 2009 0:29:31 GMT -8
<script type="text/javascript"> for (spn=document.getElementsByTagName('span'), s=0; s<spn.length; s++) { if (spn.className=='pagejump') { spn.parentNode.className='pagejump'; if (spn.getElementsByTagName('a')[0]) { spn.getElementsByTagName('a')[0].style.color=""; } } } </script>
|
|
|
Post by Wormopolis on Oct 18, 2009 0:31:48 GMT -8
confused on the second question.. you dont want it to show "members"?
|
|
|
Post by tunescool on Oct 18, 2009 1:02:58 GMT -8
yea i want to just get rid of it.
im gonna use a post splitter, i was but it stopped working, but you mine as well change that lines color in the other thread too. in case i ever change it or use it on another skin someday
|
|
|
Post by Wormopolis on Oct 18, 2009 20:41:03 GMT -8
see if this gets rid of "members"...
<script type="text/javascript"> // hide "members" if (location.href.match(/action=display/)) { for (tds=document.getElementsByTagName('td'), m=0; m<tds.length; m++) { if (tds[m].width=='20%' && tds[m].align=='center' && tds[m].vAlign=='top' && tds[m].innerHTML.match(/Members/)) { tds[m].innerHTML=tds[m].innerHTML.replace(/Members/,''); } } } </script>
|
|
|
Post by tunescool on Oct 18, 2009 21:14:01 GMT -8
that took members away and administrator is still there, could you pull "member is online" under the displayname. the cell is still there
|
|
|
Post by Wormopolis on Oct 18, 2009 21:37:44 GMT -8
its not in its own cell so perhaps this will get rid of the space...
tds[m].innerHTML=tds[m].innerHTML.replace(/Members<br>/i,'');
|
|
|
Post by tunescool on Oct 18, 2009 22:00:33 GMT -8
that worked, could you take members out of the regular profile, i didnt think of it but i went to see if i could give someone a custom title still, which worked, i noticed it
|
|
|
Post by Wormopolis on Oct 18, 2009 23:23:51 GMT -8
you have some sort of profile remodel... its going to be harder to get it out of there...
|
|