Justoverclock Is there any way we can put this back for perhaps 30 minutes ? I have an idea.
If you reinstate the code, but
- Place it in between two
<div>
tags like this
<div class="hideme">
<section class="contact-area" id="contact">
<div class="container">
<div class="row">
<div class="col-lg-6 offset-lg-3">
<div class="contact-content text-center">
<a href="#"><img src="https://flarum.org/assets/img/verified-community.svg" alt="logo"></a>
<p>Flarum.it è l'unica community verificata direttamente dai creatori di Flarum. Vi invitiamo ad utilizzare solo ed esclusivamente questa community per le richieste di supporto, in quanto avrete la sicurezza di ottenere sempre informazioni aggiornate e sicure.
</p>
<div class="hr"></div>
<h6>Community Verificate: https://flarum.org/verified-communities</h6>
<div class="contact-social">
<ul>
<li title="Pagina ufficiale Facebook di Flarum"><a class="hover-target" href="https://www.facebook.com/flarumitaliaofficial"><i class="fab fa-facebook-f"></i></a></li>
<li title="Flarum su Github"><a class="hover-target" href="https://github.com/flarum"><i class="fab fa-github"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
- Now set a class in your CSS called
.hideme
that looks like the below
.hideme {
display: none;
}
- Save everything and clear the cache
This will enable the site to load, but the footer you’ve inserted will be hidden. It’ll let me play with the layout without it disrupting anyone else as I can override the CSS class inline and expose the footer 😃