Comments on eithorne All Comments

how did u do the scale on hover thingy with ur images...... i cant figure it out

for hover effects you gotta use CSS ! it should be something like 

.img-thumbnail:hover {
    transform: scale(1.05, 1.05);
}

OHHHHH now i get what i was doing wrong! thank you very much ^_^