Is there a way to adjust the positioning of the featured image so that it lines up better with the title? Check out this page on AnyGeeks
This is the code snippet responsible for setting the image.
<div class="container">
<div class="jumbotron jumbotron-fluid mb-3 pl-0 pt-0 pb-0 bg-white position-relative">
<div class="h-100 tofront">
<div class="row justify-content-between">
<div class="col-md-6 pt-6 pb-6 pr-6 align-self-center">
<p class="text-uppercase font-weight-bold">
<a class="text-danger" href="./category.html">{% block category %}{% endblock %}</a>
</p>
<h1 class="display-4 secondfont mb-3 font-weight-bold">{% block ptitle %} {% endblock %}</h1>
<p class="mb-3">
{% block desc %} {% endblock %}
</p>
<div class="d-flex align-items-center">
<img class="rounded-circle" src="{{url_for('static',filename='img/avatar.jpeg')}}" width="70">
<small class="ml-2">RahulVk<span class="text-muted d-block">{% block dtt %}{% endblock %}read</span>
</small>
</div>
</div>
<div class="col-md-6 pr-0">
<img src="{% block featuredImage %}{% endblock %}">
</div>
</div>
</div>
</div>
Flask is being used as the backend, hence the presence of those tags.