Hellooo, I'm using the theme Heavenly Blue and i wanted the photosets to be monochrome and then color when you hover over it but it doesn't work. Could you help me?
Hello, I've ran into a problem with the side image for the theme Heavenly Blue. I want to move the picture to the left so that it wouldn't be covered by my posts, how can i do that? Thanks~
Aaah, your customization are so pretty! Addressing this first, to move the picture more to the left find '#si' in your theme's code. It'll look like this.
display: none;position: fixed;bottom: 0px;left: 150px;}
See left? Move that number up or down to change the position of the picture.
As for the monochrome thing, you've got to add something like this to make it work;
-webkit-filter: Grayscale(100%); filter: grayscale(100%); -webkit-filter: grayscale(100%); -moz-filter: grayscale(100%); -ms-filter: grayscale(100%); -o-filter: grayscale(100%); -webkit-filter: grayscale(1);}
.photoset:hover { -webkit-filter: Grayscale(0%); filter: grayscale(0%); -webkit-filter: grayscale(0%); -moz-filter: grayscale(0%); -ms-filter: grayscale(10%); -o-filter: grayscale(0%); -webkit-filter: grayscale(0); filter: none; /* Firefox 3.5+ */ }
Let me know how it works!