Adding a background onto a specific member's profile page.
3 posters
Page 1 of 1
Adding a background onto a specific member's profile page.
Hi so I recently discovered this code to add a background onto a specific member's page:
It works like a charm, except there are a lot of members on my forum so instead of adding it just to user68 it's adding it to user 681, 682, 683 etc
How do you make it only add it to user 68?
Thank you
http://www.gasrforum.com/
- Code:
jQuery(document).ready(function(){
if(window.location.pathname.indexOf("/u68")!==-1){
jQuery('<style>body{background: url("http://media.tumblr.com/6233adc1e97adcc10105f1988b8a2465/tumblr_inline_mns3reYdBr1qz4rgp.gif"); </style>').appendTo(document.head);
} else return;
});
It works like a charm, except there are a lot of members on my forum so instead of adding it just to user68 it's adding it to user 681, 682, 683 etc
How do you make it only add it to user 68?
Thank you
http://www.gasrforum.com/
Last edited by Bedlam on May 29th 2015, 12:24 am; edited 1 time in total
Re: Adding a background onto a specific member's profile page.
change this:
So:
- Code:
if(window.location.pathname.indexOf("/u68")!==-1)
- Code:
if (window.location.pathname == "/u68")
So:
- Code:
jQuery(document).ready(function(){
if(window.location.pathname == "/u68"){
jQuery('<style>body{background: url("http://media.tumblr.com/6233adc1e97adcc10105f1988b8a2465/tumblr_inline_mns3reYdBr1qz4rgp.gif"); </style>').appendTo(document.head);
} else return;
});
Re: Adding a background onto a specific member's profile page.
Wow thank you so much!! It really was that easy I just couldn't figure it out~
Re: Adding a background onto a specific member's profile page.
Topic solved and archived


Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.

» Adding additional profile fields to members list page
» Help with adding HTML to a specific page.
» Profile feild for specific members
» Adding A badge On The Bottom-Right Corner of The Avatar For Members of A Specific Usergroup?
» ADDING PROFILE PAGE/TAB HELP??
» Help with adding HTML to a specific page.
» Profile feild for specific members
» Adding A badge On The Bottom-Right Corner of The Avatar For Members of A Specific Usergroup?
» ADDING PROFILE PAGE/TAB HELP??
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum