• Hi All,

    I’ve been running the spun theme (having made some changes to the menu/font color in a child theme) and just updated to the latest version. While my modifications to the child theme seem to have held, there is one thing I’ve noticed since the update: previously, when hovering over the featured image circles, those images would change from black and white to color, but now they stay b/w.

    Can anybody help me figure out how to get the color back when hovering over these images????

    my site is: http://treyeckles.com

    Thanks in advance for your help,
    Trey

Viewing 1 replies (of 1 total)
  • Gwena_elle

    (@gwena_elle)

    The answer is here : http://wordpress.org/support/topic/updated-to-202-and-pictures-no-longer-color-when-hover

    in style.CSS,
    change

    .blog .hentry a:hover img,
    .archive .hentry a:hover img,
    .search .hentry a:hover img,
    .blog .hentry a:focus img,
    .archive .hentry a:focus img,
    .search .hentry a:focus img {
    	border-radius: 180px;
    	filter: grayscale(0);
    	-webkit-filter: none;
    	-moz-filter: none;
    	-o-filter: none;
    	-ms-filter: none;
    	opacity: 1;
    	-webkit-transition: all .3s ease-in-out;
    	-moz-transition: all .3s ease-in-out;
    	-o-transition: all .3s ease-in-out;
    	-ms-transition: all .3s ease-in-out;
    	transition: all .3s ease-in-out;
    	width: 100%;
    	height: 100%;
    }

    by

    .blog .hentry a:hover img,
    .archive .hentry a:hover img,
    .search .hentry a:hover img,
    .blog .hentry a:focus img,
    .archive .hentry a:focus img,
    .search .hentry a:focus img  {
     filter: none;
    }

Viewing 1 replies (of 1 total)
  • The topic ‘photo bubbles lost color after update’ is closed to new replies.