How do i change the color post for staff on a forum Hitskin_logo Hitskin.com

This is a Hitskin.com skin preview
Install the skinReturn to the skin page

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.
3 posters

    How do i change the color post for staff on a forum

    avatar
    bubblejuice
    New Member


    Posts : 8
    Reputation : 2
    Language : English

    How do i change the color post for staff on a forum Empty How do i change the color post for staff on a forum

    Post by bubblejuice August 26th 2012, 8:30 am

    How do i do this :

    How do i change the color post for staff on a forum Post10

    When he posts it is orange and it fades to right.
    i want to know how

    I think it is a code but not sure

    idk how to do a poll so dont say you have to do a poll
    Sanket
    Sanket
    ForumGuru


    Male Posts : 48766
    Reputation : 2830
    Language : English
    Location : Mumbai

    How do i change the color post for staff on a forum Empty Re: How do i change the color post for staff on a forum

    Post by Sanket August 26th 2012, 11:24 am

    Tiggati
    Tiggati
    New Member


    Male Posts : 6
    Reputation : 1
    Language : English
    Location : Australia

    How do i change the color post for staff on a forum Empty Re: How do i change the color post for staff on a forum

    Post by Tiggati September 5th 2012, 10:51 am

    You need to add this to your rank title:

    Code:
    <span class="st-rang">RANK TITLE HERE</span>

    Than this to JS management:

    Code:
    $(function() {
    $('.st-rang').closest('.post').addClass('st-answer');
    });

    Than this to CSS:

    Code:
        .post.online.st-answer {
        background: url("http://i48.servimg.com/u/f48/17/48/49/15/photo10.png") repeat-y scroll left top, url("http://2img.net/i/fa/prosilver/icon_user_online_en.png") no-repeat scroll right top #E5F1F9;
        }
        .post.st-answer {
        background: url("http://i48.servimg.com/u/f48/17/48/49/15/photo10.png") repeat-y scroll left top #E5F1F9;

    Then change the image to yours. It's the same code Fm uses.
    Sanket
    Sanket
    ForumGuru


    Male Posts : 48766
    Reputation : 2830
    Language : English
    Location : Mumbai

    How do i change the color post for staff on a forum Empty Re: How do i change the color post for staff on a forum

    Post by Sanket September 5th 2012, 9:25 pm

    Solved?