Hi Jose,
Thank you for writing in, since you already have placed the sponsors’ logos on your header, I suspect that you already have modified the VIEWS/GLOBAL/_NAVBAR.PHP files. While that is outside the scope of support, I could point you in the right direction with the understanding that it would ultimately be your responsibility to take it from here.
On your _navbar.php file, there is a block
<div class="x-container max width">
<?php x_get_view( 'global', '_brand' ); ?>
</div>
You can make that a 2 columns by updating it to:
<div class="x-container max width">
<div class="x-column x-sm x-1-2">
<?php x_get_view( 'global', '_brand' ); ?>
</div>
<div class="x-column x-sm x-1-2">
<!-- Sponsors' logos here -->
</div>
</div>
With that, you’ll have a 2 columns logobar that easily separate the main logo and sponsor logo.
The position and alignment of the logos can be adjusted with custom CSS. You can find the proper CSS code selector using the Chrome browser Developer Toolbar
For the CSS code itself, I suggest that you get started with this tutorial
That can also be achieved with the Pro header builder, by having a bar with 2 containers, the first container’s flex layout horizontal is set to start (left) and the second container’s flex layout set to column to stack the sponsor logos to each other and the flex layout horizontal set to end (right).
Hope this helps,
Cheers!