Hello!
Yes, there is a problem with your theme – widgets html code is not valid!
Look at html source:
<p id="text-6" class="widget widget_text"><h5 class="widget-title section-head cf main-color"><span class="title">Accès rapide</span></h5> <div class="textwidget"><h4>étape 1: Catane</h4>
<div style="margin-left: 40px;">
<li><strong><a href="https://www.voyagetips.com/une-semaine-en-sicile/#1_ere_etape_Catane_1_jour">Que faire et voir?</a></strong></li>
<li><strong><a href="https://www.voyagetips.com/une-semaine-en-sicile/#Se_loger_a_Catane"><span style="color: #ff6600; font-weight: bold;">Où dormir à Catane</span></a></strong></li>
</div>
<p></p>
The first paragraph tag has no closing tag! Browser is trying to fix html structure and it results in:
<p id="text-6" class="widget widget_text"></p>
<h5 class="widget-title section-head cf main-color"><span class="title">Accès rapide</span></h5> <div class="textwidget"><h4>étape 1: Catane</h4>
<div style="margin-left: 40px;">
<li><strong><a href="https://www.voyagetips.com/une-semaine-en-sicile/#1_ere_etape_Catane_1_jour">Que faire et voir?</a></strong></li>
<li><strong><a href="https://www.voyagetips.com/une-semaine-en-sicile/#Se_loger_a_Catane"><span style="color: #ff6600; font-weight: bold;">Où dormir à Catane</span></a></strong></li>
</div>
<p></p>
Widget container is empty and widget content is outside the widget! )
So the widget is fixed, but it is empty! ))
Because all widgets are affected, the problem is probably on theme level. Contact the developer or try to fix it by yourself. You should find register_sidebar
function and check after_widget
parameter. If you see <p></p>
there, remove first tag, there should be only closing tag: </p>
! If theme is ok, check for plugins which may change sidebar parameters!