아직 우리메일 알림모듈 오류 수정은 못했지만 미리 뉴스레터 위젯부터 위치를 잡으려고 하는데
이게 생각보다 어렵네요.레이아웃 수정 부분에서
div를 테이블처럼 나눠서 왼쪽에 푸터 오른쪽에 뉴스레터 이렇게 들어가게
해야 할것 같은데 기초지식이 없다보니 이것 조차 쉽지 않네요.
그래서 아예 footer.html 에 들어가서 div를 하나 더만들고 뉴스레터 위젯을 넣었더니 맨처음 스샷처럼 되어버렸습니다.
현재 레이아웃 html 부분입니다.
<include target="_import.html" />
<include target="_init.html" />
<section class="app-layout">
<include target="components/sidebar/sidebar.html" />
<include target="components/notification/notification.html" />
<include target="components/header/header.html" />
<main class="app-main app-container">
<!--@if($layoutConfig['use_aside'] === Y)-->
<section class="app-content app-content--with-aside">{$content}</section>
<include target="components/aside/aside.html" />
<!--@else-->
<section class="app-content">{$content}</section>
<!--@endif-->
</main>
보기 좋게 나란히 오른쪽에 푸터 / 왼쪽에 뉴스레터 넣고 싶어서 도움 요청을 드립니다.
<!--html 태그 속성사용-->
<include target="components/footer/footer.html" />
</section>
<include target="components/ie-message.html" />
<!-- html 태그 속성 사용 -->
<div style="display: flex; justify-content: space-between;">
<div style="flex: 1;">
<include target="components/footer/footer.html" />
</div>
<div style="flex: 1; display: flex; justify-content: flex-end;">
<img class="zbxe_widget_output" widget="ggnewsletter" skin="default" widget_sequence="1073" widget_cache="0m" module_srl="720" />
</div>
</div>
아직 적용이 안되는데 무엇이 문제일까요?