The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.

Make headers only for certain users.

Go down

Make headers only for certain users. Empty Make headers only for certain users.

Post by Guest Mon 11 Jan 2016 - 21:41

I'm currently using this code which adds a header on the post profile.

Code:
.topic-author {
  background: #fff;
  float: none;
  width: auto;
  text-align: left;
  position: relative;
  padding: 10px;
  background: url("http://i.imgur.com/H1KP8Z0.png");
}

http://prntscr.com/9owj1i

Forum version: PunBB

I'd like to make it for a certain user ID. Any help?
avatar
Guest
Guest


Back to top Go down

Make headers only for certain users. Empty Re: Make headers only for certain users.

Post by 10spetter10 Mon 11 Jan 2016 - 23:09

You can try this code:

Code:
$(function() {
  var userlist = ["u1","u2"]; // all the user id's that need the special background
  $('.post').each(function() {
    var userID = $(this).find('h4.username a:first').attr('href').substr(1);
    if (jQuery.inArray(userID, userlist) !== -1) {
      $(this).find('.topic-author').addClass('special');
    }
  });
});

On top you need to insert al the userid's of who need to have that background, then script will add the class special to the element with the class topic-author. So you need to set your css to
Code:
.topic-author.special
.
10spetter10
10spetter10
Forumember

Posts : 195
Reputation : 82
Language : Dutch

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum