tail 쪽 수정을 잘 모르겠어서 문의 드려봅니다.

tail 쪽 수정을 잘 모르겠어서 문의 드려봅니다.

QA

tail 쪽 수정을 잘 모르겠어서 문의 드려봅니다.

본문

BootStrap5로 구현된 테마를 사용하고 있는데요. 아래와 같이 변경하고 싶은데 안되서 고수분들의 조언을 들을 수 있을까 하여 올려봅니다.

구현하고 싶은 것은 아래와 같습니다. 

회사소개  개인정보  이용약관

GNUBOARD5 ⓒ ALL RIGHTS RESERVED

 


<footer id="footer">
    <div class="container py-2">
        <div class="row py-4">
            <div class="col-lg-2 d-flex align-items-center justify-content-center justify-content-lg-start mb-2 mb-lg-0">
                <a href="<?php echo G5_URL ?>" class="logo pr-0 pr-lg-3">
                    <img src="<?php echo G5_IMG_URL ?>/logo.png" height="45">
                </a>
            </div>
            <div class="col-lg-8 d-flex align-items-center justify-content-center justify-content-lg-start mb-4 mb-lg-0">
                <ul>
                    <li class="list-inline-item"><a href="<?php echo get_pretty_url('content', 'company'); ?>" class="text-muted"> 회사소개</a></li>
                    <li class="list-inline-item"><a href="<?php echo get_pretty_url('content', 'privacy'); ?>" class="text-muted"> 개인정보</a></li>
                    <li class="list-inline-item"><a href="<?php echo get_pretty_url('content', 'provision'); ?>" class="text-muted"> 이용약관</a></li>
                </ul>
                <br>
                GnuBoard5 Communications © Copyright <?php echo date('Y', G5_SERVER_TIME) ?>. All Rights Reserved.
            </div>
            <div class="col-lg-5 d-flex align-items-center justify-content-center justify-content-lg-end">
                <nav id="sub-menu" class="mb-0">
                    <ul class="list-unstyled list-inline">
                        <li class="list-inline-item"></li>
                    </ul>
                </nav>
            </div>
        </div>
    </div>
</footer>

1954238099_1664631750.0997.png

이 질문에 댓글 쓰기 :

답변 2


<!-- https://getbootstrap.com/docs/3.3/getting-started/ -->
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@3.3.7/dist/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<style>
.container { text-align: center; }
.d-flex { display: flex; }
.align-items-center { align-items: center }
.justify-content-center { justify-content: center }
#footer ul { list-style-type: none; padding: 0; margin: 0; gap: 1em; }
.copyright { text-transform: uppercase; }
</style>
<footer id="footer">
    <div class="container py-2">
        <div class="row py-4">
            <div class="col-lg-2 d-flex align-items-center justify-content-center justify-content-lg-start mb-2 mb-lg-0">
                <a href="<?php echo G5_URL ?>" class="logo pr-0 pr-lg-3">
                    <img src="<?php echo G5_IMG_URL ?>/logo.png" height="45">
                </a>
            </div>
            <div class="col-lg-8 d-flex align-items-center justify-content-center justify-content-lg-start mb-4 mb-lg-0">
                <ul class="d-flex">
                    <li class="list-inline-item"><a href="<?php echo get_pretty_url('content', 'company'); ?>" class="text-muted"> 회사소개</a></li>
                    <li class="list-inline-item"><a href="<?php echo get_pretty_url('content', 'privacy'); ?>" class="text-muted"> 개인정보</a></li>
                    <li class="list-inline-item"><a href="<?php echo get_pretty_url('content', 'provision'); ?>" class="text-muted"> 이용약관</a></li>
                </ul>
                <!-- <br>
                GnuBoard5 Communications © Copyright <?php // echo date('Y', G5_SERVER_TIME) ?>. All Rights Reserved. -->
            </div>
            <div class="col-lg-8 d-flex align-items-center justify-content-center justify-content-lg-start mb-4 mb-lg-0 copyright">
                GnuBoard5 Communications © Copyright <?php echo date('Y', G5_SERVER_TIME) ?>. All Rights Reserved.
            </div>
            <div class="col-lg-5 d-flex align-items-center justify-content-center justify-content-lg-end">
                <nav id="sub-menu" class="mb-0">
                    <ul class="list-unstyled list-inline">
                        <li class="list-inline-item"></li>
                    </ul>
                </nav>
            </div>
        </div>
    </div>
</footer>

<footer id="footerr">
    <div class="containerx py-2">
        <div class="py-4">
            <!--div class="d-flex align-items-center justify-content-center mb-2 mb-lg-0">
                <a href="<?php echo G5_URL ?>" class="logo pr-0 pr-lg-3">
                    <img src="<?php echo G5_IMG_URL ?>/logo.png" height="33">
                </a>
            </div-->
            <div class="d-flex align-items-center justify-content-center">
                <nav id="sub-menu" class="mb-0">
                    <ul class="list-unstyled list-inline">
                        <li class="list-inline-item"><a href="<?php echo get_pretty_url('content', 'company'); ?>" class="text-muted"> 회사소개</a></li>
                        <li class="list-inline-item"><a href="<?php echo get_pretty_url('content', 'privacy'); ?>" class="text-muted"> 개인정보</a></li>
                        <li class="list-inline-item"><a href="<?php echo get_pretty_url('content', 'provision'); ?>" class="text-muted"> 이용약관</a></li>
                    </ul>
                </nav>
            </div>
            <div class="d-flex align-items-center justify-content-center  mb-4 mb-lg-0">
                GnuBoard5 Communications © Copyright <?php echo date('Y', G5_SERVER_TIME) ?>. All Rights Reserved.
            </div>
        </div>
    </div>
</footer>
답변을 작성하시기 전에 로그인 해주세요.
전체 59,287
QA 내용 검색

회원로그인

(주)에스아이알소프트 / 대표:홍석명 / (06211) 서울특별시 강남구 역삼동 707-34 한신인터밸리24 서관 1404호 / E-Mail: admin@sir.kr
사업자등록번호: 217-81-36347 / 통신판매업신고번호:2014-서울강남-02098호 / 개인정보보호책임자:김민섭(minsup@sir.kr)
© SIRSOFT