Commit 01ac2da1 by Matt Tuchfarber

Make FAQ full width, not columns

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