Hello Chris,
That is the design by default. Usually fixed top bar consist of navigation menu only because too much content on it means lesser space for the content. Topbar plus stacked menu will occupy more or less 33% on your browser height already. So whatever your content is, it will only scroll on 67% space below it and that is why its not ideal. Good structure is important for better UI experience.
In case you wish to proceed, I can’t point you to the template responsible for this.
wp-content\themes\x\framework\legacy\cranium\headers\views\global\_navbar.php
You may copy that file on the same folder path on yout child theme here:
wp-content\themes\x-child\framework\legacy\cranium\headers\views\global\_navbar.php
If the folder doesn’t exist, please create it.
Then open the copied file on your child theme. Starting line 17, you can see this part:
<div class="x-logobar">
<div class="x-logobar-inner">
<div class="x-container max width">
<?php x_get_view( 'global', '_brand' ); ?>
</div>
</div>
</div>
To make it inside the sticky/fixed bar, move above code below this line:
<div class="<?php x_navbar_class(); ?>">
Save it. That part is only moving the stacked logo inside the sticky bar. Topbar is another, case. We can find topbar here:
\wp-content\themes\x\framework\legacy\cranium\headers\views\integrity\wp-header.php
You may need to copy that again on the same folder path on your child theme. Then open the copied file and remove this line:
<?php x_get_view( 'global', '_topbar' ); ?>
Then open the child theme copy of your navbar again. This one:
wp-content\themes\x-child\framework\legacy\cranium\headers\views\global\_navbar.php
Now add the topbar code that you have remove above and then add it above the parts of the code you have copied earlier
<?php x_get_view( 'global', '_topbar' ); ?>
Note that this will be tricky if you are not familiar with coding. Any syntax error might put your site down. Please proceed with caution. Any issue that might arise from altering structure is outside the scope of our support. This is just a demonstration on how to achieve it. You may also need some adjustment on navbar fixed height after this. This assumes that you are also in depth on using CSS to make the adjustment after. Thank you.