hello guys (:
I was wondering if somebody could tell me how to change the size of the "yes" or "no" (when you have an achievement or not) when I change the size of the achievement image, the "yes" / "no" image also changes... when you check out my profile you'll see what I mean :p
please ping me when you have the solution! (:
perhaps one of you know the solution?...
; I'm not sure there is a way to change the size of the yes/no images. They don't have a specific image ID for you to be able to do that. Both the achievement image and the yes/no images are in one div section, and you've changed the images for that div section ( img). That will change both images whether you want it to or not, unfortunately.
Your best bet is to leave them at their default settings, or put up a link to your achievements page separately so people can see which ones you've completed.
thanks for the suggestion^^ I think I'll just remove the whole image thing, have "display:none;" then :p
Hey, you're asking to independently change the sizes of the item image next to the achievements and the green/red icons? I wasn't completely sure if that's what you want, but if so, this should work:
.sp-table:nth-child(odd) img {height: 30px; width: 30px;} /* Item to the left of achieves /
.sp-table:nth-child(even) img {height: 10px; width: 10px} / Check and X icons */
look what figured out 0_o
thanks a ton! :D you're the coding master! :p how did you know to do it like this?...
I actually learned how to use CSS selectors like that very recently! Had to try a hundred different things before it finally worked, which was a good learning experience. Glad I could help! =)
aaaand that sounds like a long process :p should do it too...knowing this most people don't :p