I am having trouble centering this image vertically...
https://i.sstatic.net/8fWKC.jpg
<div class="col-lg-6 d-flex flex-column justify-content-center">
<h4><strong>Assistance</strong></h4>
<blockquote><p class="description" style="font-size: 14px;">
When there is a <i class="fas fa-question-circle"></i> on a page and you hover over it, an overview of the options for that specific page will appear.
</p></blockquote>
<h4><strong>Editing</strong></h4>
<blockquote><p class="description" style="font-size: 14px;">
Using the button <button type="button" class="btn btn-xs" title="Add"><span class="glyphicon glyphicon-plus" aria-hidden="true"></span></button>, a new item can be added to the current page.<br />
If data can be edited, it is indicated by a <abbr title="">dotted line</abbr> under the text in question. It may be necessary to first enable edit mode using the button <input type="checkbox" data-toggle="toggle" data-size="mini" data-on="<span class='glyphicon glyphicon-pencil'></span>" data-off="<span class='glyphicon glyphicon-pencil'></span>" data-onstyle="danger"> on the relevant page.
</p></blockquote>
</div>
<div class="col-lg-6">
<img src="img/portfolio/torza/002.jpg" class="img-fluid" alt="Torza">
</div>
I have attempted to include
style="display: inline-block; height: 100%; vertical-align: middle;"
on both div
.
I also tried using the class vcenter
, and even ensured it was included in the css
as an extra precaution.
.vcenter {
display: inline-block;
vertical-align: middle;
float: none;
}
Any recommendations?