mobile에서는 적용이 안 되어 다음 css 추가
/*—iStock hight for mobile—- */
@media only screen and (max-width: 769px) {
div.mimoo-before-content {
height: 100px;
}
그러면 mobile관련 다른 css 문제 발생.
그래서 사이즈 조정
@media only screen and (max-width: 400px) {
div.mimoo-before-content {
height: 100px;
}
}
그래도 해결이 안 된다면,
문제 있는 css들을 모조리 위 css보다 우선 처리 위치 상위로 이동할 것.