Quick question: how do you change the icons on user lookups?

Discussion in 'Neopets Chit-Chat' started by hopefullyitworks, Apr 10, 2011.

  1. hopefullyitworks

    hopefullyitworks Level II

    Joined:
    Nov 4, 2008
    Messages:
    231
    Likes Received:
    3
    Location:
    Southern California
    I would like to change the trade, auction, etc icons on my user lookup, but I cannot figure it out...any suggestions? :p
     
  2. Junior

    Junior Administrator
    Staff Member

    Joined:
    Nov 8, 2009
    Messages:
    3,350
    Likes Received:
    169
    Location:
    I come from a land down under! (Maaaate!)
    You cannot change them. You can only put your own over the top of them.

    The coding behind that I don't know. I've never been good with coding.
     
  3. Anfan

    Anfan Level IV

    Joined:
    Feb 12, 2009
    Messages:
    1,327
    Likes Received:
    105
    Location:
    USA
    Or rather, you make the #usercollections images not appear, and put your own image as a background to that table. So, first you use
    Code (Text):
    1. #usercollections .medText img{visibility:hidden;}
    to block Neo's default images from showing up.

    Then you use
    Code (Text):
    1. #usercollections .contentModuleContent{background:url("IMAGE") no-repeat;}
    to stick your own images in as a background for the #usercollections table, where IMAGE is the background image URL.
     
    hopefullyitworks likes this.