Dear Reader,
I am new in Django-cms. right now I have an issue with the toolbar and bootstrap4.
The toolbar overlapping with the navbar and if I use ?toolbar_off I can see the navbar but without the bootstrap CSS.
I already added this in my base.html
<!-- django CMS toolbar adjustment -->
{% if request.toolbar %}
<style>
.cms-toolbar-expanded .navbar-custom {
margin-top: 30px;
}
</style>
{% endif %}
this did not solve the problem
I am using Django-1.11.16.dist-info, djangocms_bootstrap4 and django_cms-3.5.2.dist-info
Can anyone help me solve this problem that makes it possible for the page to move under the toolbar?

thanks