Main Steps

  • Log in to your WordPress admin dashboard.

  • Navigate to “Appearance” and click on “Editor” in the left-hand menu. This will open the theme editor.

  • On the right-hand side, you’ll see a list of theme files. Look for a file called “footer.php” or “footer-template.php” (the exact name may vary depending on your theme).

  • Click on the “footer.php” or “footer-template.php” file to open it in the editor.

  • Scroll through the code and locate the code for your absolute footer. It might be enclosed within a <footer> tag or have specific classes assigned to it.

  • After the code for the absolute footer, add the HTML code for the new row you want to add.

Get Code

<div class=”additional-row” style=” position: fixed; bottom: 0; left: 0; right: 0; text-align: center; padding: 5px 0; background-color: white; z-index:1000; margin-top: 40px “>

<a href=”#”><img src=”icon.file” alt=”Icon 1″ style=”width: 24px; height: 24px; margin:0 20px”>
</a>

<a href=”#”><img src=”icon.file” alt=”Icon 2″ style=”width: 24px; height: 24px; margin: 0 20px”>
</a>

<a href=”#”><img src=”icon.file” alt=”Icon 3″ style=”width: 24px; height: 24px; margin: 0 20px”>
</a>

<a href=”#”><img src=”icon.file” alt=”Icon 4″ style=”width: 24px; height: 24px; margin:0 20px”>
</a>

</div>