vForums Support > Programming & Coding :: Code Requests & Support :: > Welcome Table Mod

Welcome Table Mod - Posted By VeaZna (veazna) on 11th Nov 08 at 6:09pm
something really simple,

I just want some type of PM system on the right side of the menu bar. something like "no new pm's" , "New Pm's , "Welcome Guest", some thing like that. But I want them to be in images.

Thanks! {Smile}

Re: Welcome Table Mod - Posted By dog199200 (dog199200) on 11th Nov 08 at 10:45pm
this may sound stupid, but I think i can do this easily, but i'm not sure exactly what you mean, i can be an air head from time to time {Smile} SI can i get like a mock image of exactly what you are looking for?

Re: Welcome Table Mod - Posted By GlitchesSocom (ravenelle) on 12th Nov 08 at 5:41am
Here ya go {Cool}

Code:
 
  1. <script type = "text/JavaScript">
  2. /*PM Images in Menu
  3. GlitchesSocom*/
  4.  
  5. var nopm="NO NEW PM IMGE URL"
  6. var pm="NEW PM IMAGE URL"
  7. var guest="GUEST IMAGE URL"
  8.  
  9. //No more editing
  10. var link = "/action/pm"
  11. var link2 = "/action/login"
  12. var m = document.getElementById('welcome_table').getElementsByTagName('td')[2];
  13. if(vf_username!="guest" && vf_new_pms!=0){
  14. m.innerHTML = "<div style='float:left'>"+m.innerHTML+"</div><div style='float: right'><a href='"+link+"'><img src='"+pm+"'></a></div>";
  15. }else{
  16. if(vf_username!="guest" && vf_new_pms==0){
  17. m.innerHTML = "<div style='float:left'>"+m.innerHTML+"</div><div style='float: right'><a href='"+link+"'><img src='"+nopm+"'></a></div>";
  18. }else{
  19. if(vf_username=="guest"){
  20. m.innerHTML = "<div style='float:left'>"+m.innerHTML+"</div><div style='float: right'><a href='"+link2+"'><img src='"+guest+"'></a></div>";
  21. }
  22. }
  23. </script>
  24.  
 

Re: Welcome Table Mod - Posted By dog199200 (dog199200) on 12th Nov 08 at 9:03am
nice job,,,,*Sigh* out done for being a visual worker....

Re: Welcome Table Mod - Posted By GlitchesSocom (ravenelle) on 12th Nov 08 at 2:46pm
haha sorry Dwight =]

Re: Welcome Table Mod - Posted By dog199200 (dog199200) on 13th Nov 08 at 9:14am
np, as long as he got a working code