![]() |
| |||||||
| IPB Skinning Help Need help customizing the looks of your forum? Post here. |
![]() |
| | LinkBack | Thread Tools | Display Modes |
| | #1 (permalink) |
| Senior Forumer ![]() | I just want to have a back up of my small modification.. This is simple modification that turns PM Link into RED once you received private message. Installation Path: AdminCP->HTML Templates->Manage HTML->Global HTML elements-> Board Header(logo, links, etc) ... edit single and add to bottom. Code: <script type='text/javascript'>
// Coded by: MasterVision
// Date coded: June 12, 2007
e = document.getElementById('userlinks')
a = e.getElementsByTagName('A')
for (i =0; i < a.length; i++) {
if (a[i].href.indexOf('act=Msg&CODE=01') != -1) {
s = a[i].innerHTML
if (s != "0 New Messages"){
var new_s = "<span style='color:red; font:bold;'>" + s + "</span>";
a[i].innerHTML = new_s;
}
break
}}
// -->
</script>
|
| | |
| | #2 (permalink) |
| Elite Forumer ![]() | I have installed your code and it's great!!! Thanks, I see that you made the font bold, but for some reason it does not go bold on my board. I copied it exactly as it is, and it works fine, just doesn't go bold. Do you have any idea why? |
| | |
| | #4 (permalink) |
| Elite Forumer ![]() | anyways... thanks for using it [/quote] You're welcome...... I'll use everything you give us.......all your codes and ideas are great ![]() Now.... do you have any answer to my other questions? about the location and message tracking ? (Just trying to direct your attention that way )Last edited by Wild Cat; 07-18-2007 at 04:17 AM. Reason: spelling... |
| | |
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| (skinning tips) Adding Photo Gallery | MasterVision | IPB Skinning Help | 11 | 08-03-2008 10:50 AM |
| (skinning tips) Create your Own RSS feeds | MasterVision | IPB Skinning Help | 9 | 10-29-2007 06:05 PM |
| (skinning/forum tips) Member's TOPIC | MasterVision | IPB Skinning Help | 5 | 07-18-2007 01:13 AM |
| (skinning tips) Adding Chat to your board | MasterVision | IPB Skinning Help | 35 | 06-13-2007 08:35 AM |
| (skinning tips) Adding Online Store | MasterVision | IPB Skinning Help | 3 | 05-21-2007 08:08 AM |