갤러리게시판 lightbox 를 이용할때 이미지 width 를 설정할수 있나요?
본문
안녕하세요 ^^
그누인들 다들 무더위와 비 피해 없으시길 기원합니다.
갤러리게시판에 리스트에서 이미지 클릭시 이미지 미리보기 뜨는게 lightbox로 작동되던데
add_stylesheet('<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.11.3/css/lightbox.min.css" />');
미리보기 되는 이미지를 원본 크기로 하고 싶은데 축소가 되어 뜨더라구요.
미리보기 이미지 크기 설정하려면 어디서 해야 하는지 아시는분 계실까요~
답변 1
1. /skin/board/[갤러리 스킨]/style.css 에 추가
/* lightbox 이미지 원본 크기 표시 */
.lightbox img {
max-width: none !important;
max-height: none !important;
width: auto !important;
height: auto !important;
}
.lb-image {
max-width: none !important;
max-height: none !important;
}
2. /extend/version.extend.php (css 캐시 갱신)
define('G5_CSS_VER', '250721');
답변을 작성하시기 전에 로그인 해주세요.