|
Post by tunescool on Oct 10, 2009 18:09:07 GMT -8
do you have time? i forgot which thread it was, i looked over and over, so i just started a new one. i wanna change the displaynames so they stand out on the mainpage, but everywhere else as well. and is it possible to make it so i can use other color change codes in the future? if youre busy i can wait
|
|
|
Post by Wormopolis on Oct 10, 2009 19:00:43 GMT -8
the color of names is controlled in the modifygroups section in the admin panel... unless youa re meaning something else?
|
|
|
Post by tunescool on Oct 11, 2009 4:23:40 GMT -8
id like it to stick out on the main page, and change it everywhere tho, and that just changed it in the profiles
|
|
|
Post by Wormopolis on Oct 11, 2009 4:34:54 GMT -8
OH! the reason your main page name colors are all the same was because of that info center remodel you wanted where it made all the links a specific color. There was also the last post cell remodel you wanted that made links a certain color.
CSS could be used to control the color:
<style type="text/css"> .group1 {color: FFFF00;} .group0 {color: 00FF44;} </style>
at bottom of global header.. or failing that try bottom of global footer.
|
|
|
Post by tunescool on Oct 11, 2009 4:49:43 GMT -8
neither did anything, and i just replace .group0 with .group4?
|
|
|
Post by Wormopolis on Oct 11, 2009 6:53:04 GMT -8
I just checked again. the remodel re-classed ALL of the links in the infocenter and last post cells. Those remodels are going to have to be re-written.
|
|
|
Post by Wormopolis on Oct 12, 2009 7:56:25 GMT -8
dammit. I knew I was forgetting something. dont hesitate to bump this.
|
|
|
Post by Wormopolis on Oct 12, 2009 20:32:15 GMT -8
|
|
|
Post by tunescool on Oct 12, 2009 22:06:03 GMT -8
everything on the main page and sub boards works but the thread page is the same. they were the color i changed them to on the post page, but they went back to code color. they unbolded, that should just be easy css, nothing to do with the codes? if it is code related ill just find some code
|
|
|
Post by Wormopolis on Oct 12, 2009 22:21:25 GMT -8
lemme look. I thought there was only 2 codes involved in those reduxes
|
|
|
Post by Wormopolis on Oct 12, 2009 22:25:35 GMT -8
guess there was 3 of em...
<script type="text/javascript"> <!-- // lastpost cell remodel on thread lists
if (location.href.match(/board=/)) { var lastPostCell = document.getElementsByTagName('td'); for(l=0; l<lastPostCell.length; l++) { if(lastPostCell[l].className.match(/windowbg/) && lastPostCell[l].width.match(/(14|20)%/)) { lastPostCell[l].align = 'center'; for (lnks=lastPostCell[l].getElementsByTagName('a'), w=0; w<lnks.length; w++) if (!lnks[w].className.match(/group/)) lnks[w].className='lastpostlink'; } } } // --> </script>
|
|
|
Post by tunescool on Oct 12, 2009 22:40:31 GMT -8
all the colors are the same now, thank you. i wanted to ask you before but you were already doing so much at the time. the posting page are bold, nothing else is. is it a big deal to get them all bold? will i be able to use codes to change individual names now?
|
|
|
Post by Wormopolis on Oct 12, 2009 23:46:22 GMT -8
the usernames are bold or the othe rlinks? its probably in the CSS somewhere...
|
|
|
Post by tunescool on Oct 13, 2009 0:15:58 GMT -8
the displayname names and karma are bold
|
|
|
Post by Wormopolis on Oct 13, 2009 7:04:06 GMT -8
global header:
<style type="text/css"> .group0, .group1, .group2, .group3 {font-weight: bold;} </style>
|
|