[이윰] 아웃로그인 레이아웃 변경하기

페이지 정보

루루아빠 3,195 1 2015.06.19 00:56

평점

  • 평점 : 0점 (0명 참여)

본문

1. 그누보드5/eyoom/theme/설치된 테마/css/style.css 를 열고 .service-block-e .progress { 을 찾는다.

수정 전

.service-block-e .progress {
    margin-bottom: 0px;
}

/*Service Innner*/
.service-block-e .service-in small {
    font-size: 12px;
    text-transform: uppercase;
}

.service-block-e .service-in h4 {
    font-size: 14px;
    line-height: 0.9;
    margin-bottom: 0;
}
수정 후

.service-block-e .progress {        /* 루루아빠 수정 -  아웃로그인 progress bar 아래 간격 // 원래 값 : margin-bottom: 7px; */
    margin-bottom: 0px;
}

/*Service Innner*/
.service-block-e .service-in small {
    font-size: 12px;                            /* 루루아빠 수정 -  아웃로그인 포인트, 경험치 폰트 크기 // 원래 값 : font-size: 14px; */
    text-transform: uppercase;
}

.service-block-e .service-in h4 {
    font-size: 14px;
    line-height: 0.9;                            /* 루루아빠 수정 -  아웃로그인 레벨과 최고관리자 표기 아래 짤림 해결 // 원래 값 : line-height: 0.8; */
    margin-bottom: 0;
}

2. 1. 그누보드5/eyoom/theme/설치된 테마/css/common.css 를 열고 .progress-xxs { 를 찾아 } 아래쪽에 다음 소스를 추가한다.

/* 루루아빠 추가 - 아웃로그인 progress-bar 높이 추가 시작 */
.progress-xxxs {
    height: 5px;
}
/* 루루아빠 추가 - 아웃로그인 progress-bar 높이 추가 끝 */

3. 그누보드5/eyoom/theme/설치된 테마/skin_bs/outlogin/basic/outlogin.skin.2.html 을 열고 다음과 같이 작업한다.
<a href="{C.G5_BBS_URL}/point.php" target="_blank" id="ol_after_pt" class="member-point"> 을 찾아 소스를 교체한다.

수정 전

        <a href="{C.G5_BBS_URL}/point.php" target="_blank" id="ol_after_pt" class="member-point">
            <i class="fa fa-tachometer"></i>
            <span class="service-heading">{levelset.gnu_name}</span>
            <span class="counter">{point}</span>
        </a>

        <div class="clearfix"></div>

        <div class="row member-lv margin-bottom-10">
            <div class="col-xs-6 service-in">
                <small>레벨</small>
                <h4 class="counter">{eyoomer.level}</h4>
            </div>
            <div class="col-xs-6 text-right service-in">
                <small>{levelset.eyoom_name}</small>
                <h4 class="counter">{=number_format(eyoomer.level_point)}</h4>
            </div>
        </div>
        <div class="row statistics">
            <h3 class="heading-xs">Progress Bar <span class="pull-right">{lvinfo.ratio}%</span></h3>
            <div class="progress progress-e progress-xxs">
                <div style="width: {lvinfo.ratio}%" aria-valuemax="100" aria-valuemin="0" aria-valuenow="{lvinfo.ratio}" role="progressbar" class="progress-bar progress-bar-light">
                </div>
            </div>
        </div>
수정 후

        <div class="row member-lv margin-bottom-10">
            <div class="col-xs-6 service-in">
                <a href="{C.G5_BBS_URL}/point.php" target="_blank" id="ol_after_pt" class="member-point">
                    <i class="fa fa-tachometer"></i>
                    <small>{levelset.gnu_name}</small>
                    <h4 class="counter">{point}</h4>
                </a>
            </div>
            <div class="col-xs-6 text-right service-in">
                <small>{levelset.eyoom_name}</small>
                <h4 class="counter">{=number_format(eyoomer.level_point)}</h4>
            </div>
        </div>
        <div class="row statistics">
            <h3 class="heading-xs">Progress Bar <span class="pull-right">{lvinfo.ratio}%</span></h3>
            <div class="progress progress-xxxs progress-striped active">
                <div class="progress-bar progress-bar-danger" style="width: {lvinfo.ratio}%" aria-valuemax="100" aria-valuemin="0" aria-valuenow="{lvinfo.ratio}" role="progressbar" class="progress-bar progress-bar-light">
                </div>
            </div>
        </div>

4. 그누보드5/eyoom/theme/설치된 테마/skin_bs/outlogin/basic/style.css 을 열고 다음과 같이 작업한다.
.ol-after .service-block-e .service-in h4 { 를 찾아 } 바로 위쪽에 다음 소스를 추가한다.

/*  루루아빠 추가 -  포인트 아래 숫치 정렬 시작 */
/*   text-overflow: ellipsis; */        /*  루루아빠 수정 -  수치를 그대로 표현 // 원래 값 : text-overflow: ellipsis; */        
  white-space: nowrap;
  word-wrap: normal;
  overflow: hidden;
  padding-top: 2px;
/*  루루아빠 추가 -  포인트 아래 숫치 정렬 끝 */
.ol-after .member-lv { 를 찾아 다음과 같이 수정한다.

.ol-after .member-lv {
    border-top: 1px solid #eee;
    padding-top: 10px;
}
수정 후

.ol-after .member-lv {
    /* border-top: 1px solid #eee; */        /* 루루아빠 수정 -  경험치 위 라인 주석 처리 */    
    padding-top: 10px;                            /* 루루아빠 수정 -  경험치 위 여백 // 원래 값 : padding-top: 15px;*/
}

현재 루루홈의 아웃로그인 레이아웃이다.
추천인 1
  • shadow2fox
6
루루아빠 - 회원등급 : 최고관리자 - 포인트 : 1,291,152
레벨 96
경험치 1,390,095

Progress Bar 77%

- 가입일 : 2015-03-04 03:24:54
- 서명 : KNOW YOUR LIMITS BUT NEVER STOP TRYING TO EXCEED THEM !!
- 자기소개 : 루루의 자랑 루루아빠랍니다~~

댓글

첫 번째 댓글을 남겨 주세요

Total 7472938 페이지
제목 글쓴이 날짜 조회 추천
기타  🏆 include시 절대경로로 불러오기 (상대경로의 Site Root 방식) 루루아빠 2015.05.21 4,038 0
에디터  🏆 CKeditor4.x Toolbar Icon 순서 입맛대로 정렬하기 루루아빠 2016.06.04 3,013 0
그누•영카트  🏆 영카트 5.3.3.2 shadow2fox 2019.08.13 2,066 0
이윰  🏆 메인일 때와 아닐 때 사이드 레이아웃 없애기 루루아빠 2015.05.21 2,945 0
이윰  🏆 익스 및 엣지 브라우저에서 모달(modal)창에 스크롤바가 하나 더 생기는 문제 루루아빠 2016.06.06 3,121 0
에디터  🏆 [CKEDITOR] Error code: editor-element-conflict 해결하기 shadow2fox 2019.08.27 4,093 0
이윰  🏆 상단바 특정 메뉴 레벨에 따라 감추기 루루아빠 2015.05.22 2,877 0
이윰  🏆 Eyoom Builder 1.2.5 패치 루루아빠 2016.06.10 2,544 0
그누•영카트  🏆 그누보드 5.3.3.3 shadow2fox 2019.09.17 1,860 0
그누•영카트  🏆 그누보드5.0.34 + 영카트5.0.34 보안 패치 루루아빠 2015.05.22 2,940 0
그누•영카트  🏆 그누보드 5.1.19 패치 루루아빠 2016.07.06 2,418 0
그누•영카트  🏆 영카트 5.3.3.3 shadow2fox 2019.09.17 1,819 0
에디터  댓글+1🏆 에디터상에서 이미지 가운데 정렬 루루아빠 2015.05.23 3,279 0
그누•영카트  🏆 영카트 5.1.19 패치 루루아빠 2016.07.06 3,074 0
에디터  🏆 [CKEDITOR] Error code: filetools-response-error 해결하기 shadow2fox 2019.09.19 2,796 0
그누•영카트  🏆 게시판 본문 글자수 늘리기 루루아빠 2016.07.20 2,589 0
그누•영카트  🏆 영카트 5.3.3.3.1 shadow2fox 2019.10.05 1,817 0
이윰  🔒 특정 페이지 혹은 게시판에서 사이드 메뉴를 사용치 않기 루루아빠 2015.05.23 5 0
그누•영카트  🏆 영카트 5.2.0 패치 - 네이버페이 추가 루루아빠 2016.07.25 2,959 0
이윰  🏆 EBL Respond·Memo·Connect 최신글 스킨 배포 루루아빠 2015.05.23 2,813 0