• This forum has been archived. New threads and replies may not be made. All add-ons/resources that are active should be migrated to the Resource Manager. See this thread for more information.

Vertical flip of category-23px-light.png

Trombones13

Well-known member
I tried it in Gimp, but I think it turned the whole thing transparent or something. :cautious: Could someone vertically flip the image so that the gradient is darkest at the top, please? If you could, name it category-23-light-flipped.png; one less step for me. :P Thanks!

Sure, I could flip it with CSS, but that's too much to configure. lol
 
I tried it in Gimp, but I think it turned the whole thing transparent or something. :cautious: Could someone vertically flip the image so that the gradient is darkest at the top, please? If you could, name it category-23-light-flipped.png; one less step for me. :p Thanks!

Sure, I could flip it with CSS, but that's too much to configure. lol
Just flip is with CSS mate :3 no need to edit the image it's self.

HTML:
.flip-vertical {
    -moz-transform: scaleY(-1);
    -webkit-transform: scaleY(-1);
    -o-transform: scaleY(-1);
    transform: scaleY(-1);
    filter: flipv; /*IE*/
}
 
If you don't want to do it via CSS, here's the image.
 

Attachments

  • category-23px-light-flipped.webp
    category-23px-light-flipped.webp
    60 bytes · Views: 5
Just flip is with CSS mate :3 no need to edit the image it's self.

HTML:
.flip-vertical {
    -moz-transform: scaleY(-1);
    -webkit-transform: scaleY(-1);
    -o-transform: scaleY(-1);
    transform: scaleY(-1);
    filter: flipv; /*IE*/
}
It'll flip the whole object.
 
Top Bottom