I have created a basic theme using bootstrap 4. The navbar in this theme has a fixed-top class. Right below the navbar, there is a div that displays the page title as its content.
<div class="aloldal_text_div">
<div class="container">
<h1><?php get_site_cim($siteID); ?></h1>
</div>
However, I am facing an issue where this div seems to be overlapping with the navbar. Even after giving it some margin-top, the issue persists and I believe it may be due to the fixed navbar.
https://i.sstatic.net/20DCf.jpg
Could someone offer guidance on how to resolve this problem? You can view my website through this link: Click here.
Thank you for your help.