퍼스트가든용 이벤트스킨 추가. 관리자가 아닌 경우 댓글 및 조회수, 작성자 숨기기 / 댓글 기능 사용하지 않는 경우 view에서 댓글 부분 출력 하지 않도록 수정
This commit is contained in:
12
theme/rb.basic/skin/board/rb.event_bbs_fg/style.php
Normal file
12
theme/rb.basic/skin/board/rb.event_bbs_fg/style.php
Normal file
@ -0,0 +1,12 @@
|
||||
<?php
|
||||
include_once('../../../../../common.php');
|
||||
header("Content-Type: text/css");
|
||||
$bo_gallery_height = isset($_GET['bo_gallery_height']) ? htmlspecialchars($_GET['bo_gallery_height']).'px' : htmlspecialchars($rb_core['bo_gallery_height']).'px';
|
||||
$bo_mobile_gallery_height = isset($_GET['bo_mobile_gallery_height']) ? htmlspecialchars($_GET['bo_mobile_gallery_height']).'px' : htmlspecialchars($rb_core['bo_mobile_gallery_height']).'px';
|
||||
?>
|
||||
|
||||
.gallery-item-img img {width: 100%; height:<?php echo $bo_gallery_height ?>; border-radius: 10px; object-fit: cover;}
|
||||
|
||||
@media all and (max-width:1024px) {
|
||||
.gallery-item-img img {height:<?php echo $bo_mobile_gallery_height ?>}
|
||||
}
|
||||
Reference in New Issue
Block a user