apparently its taken.. even tho ... i deleted it ??? (i thought i did??) but nothing shows up....
besides this GIF on google i did when i made them
L;0V3
seen from United States
seen from Kenya
seen from United States
seen from United States
seen from Canada
seen from China
seen from United States

seen from United States
seen from Austria
seen from Romania

seen from Canada

seen from United States

seen from Canada
seen from United States
seen from Germany
seen from China
seen from United States
seen from United States
seen from Canada
seen from Thailand
apparently its taken.. even tho ... i deleted it ??? (i thought i did??) but nothing shows up....
besides this GIF on google i did when i made them
L;0V3
solsticebirdy
Search your theme code for the two sections that set up the image fading. You could aslo tyr a search (CTRL + F) for img{ which would bring you to the beginning of the code. The sections you are trying to locate look like this:
img{ -moz-transition: opacity 0.5s linear; -webkit-transition: opacity 0.5s linear; -o-transition: opacity 0.5s linear; transition: opacity 0.5s linear; opacity: 0.85; filter:alpha(opacity=85); -moz-opacity: 0.85; -khtml-opacity: 0.85; } img:hover { -moz-transition: opacity 0.5s linear; -webkit-transition: opacity 0.5s linear; -o-transition: opacity 0.5s linear; transition: opacity 0.5s linear; opacity: 1; filter:alpha(opacity=100); -moz-opacity: 1; -khtml-opacity: 1; background-color:none; }
Delete those two sections and everything shouldn't fade any longer. It looks like a lot of code, but all of that is required to cover all different browser types.
Let me know if you need me for anything else.