I managed to get some extra buttons/links in my mobile header but I am now having trouble getting them arranged properly.
I would like the search/magnifying button to be on the far right as it is normal if possible, and then the other two buttons/links should be evenly centered/spaced across the top, instead of aligned to the right.
https://snag.gy/nAszI3.jpg
I’ve used the following code to add things in if it matters:
add_action( 'generate_inside_mobile_header','tu_mobile_header_html' );
function tu_mobile_header_html() { ?>
<div class="mobile-bar-items">
<a href="../wtfff/random">Random</a>
<a href="../wtfff/popular-facts/">Popular</a>
</div>
<?php }
Thanks for your help.