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

페이지 정보

루루아빠 3,216 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,295,216
레벨 97
경험치 1,399,190

Progress Bar 9%

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

댓글

첫 번째 댓글을 남겨 주세요

Total 7482938 페이지
제목 글쓴이 날짜 조회 추천
그누•영카트  🏆 그누보드 5.3.3.2 shadow2fox 2019.08.13 2,266 0
그누•영카트  🏆 영카트 5.3.3.2 shadow2fox 2019.08.13 2,082 0
에디터  🏆 [CKEDITOR] Error code: editor-element-conflict 해결하기 shadow2fox 2019.08.27 4,124 0
그누•영카트  🏆 그누보드 5.3.3.3 shadow2fox 2019.09.17 1,875 0
그누•영카트  🏆 영카트 5.3.3.3 shadow2fox 2019.09.17 1,839 0
에디터  🏆 [CKEDITOR] Error code: filetools-response-error 해결하기 shadow2fox 2019.09.19 2,868 0
그누•영카트  🏆 영카트 5.3.3.3.1 shadow2fox 2019.10.05 1,837 0
이윰  댓글+5🏆 네이버TV 올바르게 적용하기 shadow2fox 2019.10.12 2,319 2
이윰  댓글+3🏆 페이스북(facebook) 동영상 올바르게 적용하기 shadow2fox 2019.10.14 2,314 2
그누•영카트  댓글+4🏆 📸 5.3.3.3 버전 에서 5.4.1 정식버전으로 패치 shadow2fox 2019.12.03 2,262 2
그누•영카트  🏆 📸 5.3.3.3 버전 에서 5.4.1 정식버전으로 패치 shadow2fox 2019.12.03 1,713 0
그누•영카트  🏆 그누보드 5.4.1.1 shadow2fox 2019.12.03 1,909 0
그누•영카트  🏆 영카트 5.4.1.1 shadow2fox 2019.12.03 1,714 0
그누•영카트  🏆 그누보드 5.4.1.2 shadow2fox 2019.12.10 1,776 0
그누•영카트  🏆 영카트 5.4.1.1.1 shadow2fox 2019.12.10 1,709 0
그누•영카트  🏆 영카트 5.4.1.2 shadow2fox 2019.12.10 2,051 0
이윰  댓글+5🏆 출석부 랭킹 중복 방지하기 shadow2fox 2019.12.16 3,020 4
그누•영카트  🏆 인기검색어 등록 특정 단어 제외시키기 shadow2fox 2019.12.17 1,942 0
그누•영카트  댓글+1🏆 그누보드 5.4.1.3 shadow2fox 2019.12.24 1,984 1
그누•영카트  🏆 영카트 5.4.1.3 shadow2fox 2019.12.24 2,076 0