모바일에서만 썸네일 두배로 크게하는 CSS
본문
https://www.e-madeinkorea.net/?s=lip
위 url에서 모바일만 썸네일 이미지를 두배로 크게 만드는 CSS를 알고 싶습니다
아래 소스에서 어디를 수정해야 할까요?
고수님들 부탁드립니다
@media (max-width: 768px) {
.woocommerce ul.products li.product a img,
.woocommerce div.product div.images img {
width: 200% !important;
height: auto !important;
transform: scale(2);
transform-origin: center;
}
}
답변 2
이미 되어잇는것아닙니까? --;;
@media (max-width: 768px) {
.woocommerce ul.products li.product a img,
.woocommerce div.product div.images img {
transform: scale(2);
transform-origin: center;
}
}
이렇게만해도 되구요
이미 되어잇는것아닙니까? --;;
@media (max-width: 768px) {
.woocommerce ul.products li.product a img,
.woocommerce div.product div.images img {
transform: scale(2);
transform-origin: center;
}
}
이렇게만해도 되구요