Trying to use Bootstrap 4 and dropdown-toggle:after
to display siblings as a wordpress menu. The issue is that I can't seem to keep the carrot on the same line as the text on smaller screens.
https://i.sstatic.net/rJBM5.png
Check out the code snippet below:
<a class="dropdown-toggle article-toggle" data-toggle="dropdown" href="#">
<?php the_title( '<h1 class="entry-title d-inline-block">', '</h1>' ); ?>
</a>
<ul class="dropdown-menu dropdown-articles sibling-dropdown">
<?php echo $children; ?>
</ul>