Skip to content
Snippets Groups Projects
Commit 01ac2da1 authored by Matt Tuchfarber's avatar Matt Tuchfarber
Browse files

Make FAQ full width, not columns

parent 98b391a2
No related branches found
Tags release-2021-02-03-12.16
No related merge requests found
......@@ -7,14 +7,15 @@
.main-banner {
color: $white;
margin-bottom: 1px;
background-size:cover !important;
background-repeat:no-repeat !important;
background-size: cover !important;
background-repeat: no-repeat !important;
.authoring-org-logo {
background-color: $white;
height: 100px;
}
.logo-space{
.logo-space {
height: 50px;
}
......
......@@ -356,20 +356,21 @@ endorser_org = endorser_position.get('organization_name') or corporate_endorseme
% endif
% if faqs:
<hr class="thick_rule">
<div id="faqs" class="row faqs">
<div class="col-12">
<h2>${_('Frequently Asked Questions')}</h2>
</div>
% for faq in faqs:
<div class="col-4 faq">
<div class="question">
${faq['question']}
</div>
<div class="answer">
${HTML(faq['answer'])}
</div>
</div>
% endfor
<div id="faqs" class="row faqs">
<div class="col-12 col-lg-9 col-xl-7">
<h2>${_('Frequently Asked Questions')}</h2>
<hr>
</div>
% for faq in faqs:
<div class="col-12 col-lg-9 col-xl-7 faq">
<h3 class="question">
${faq['question']}
</h3>
<div class="answer">
${HTML(faq['answer'])}
</div>
</div>
% endfor
</div>
% endif
</div>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment