ramh Hi
1) Try add this in override.css which is located in /wp-content/themes/Box/css folder :
.wrap > .bottom{padding:1rem 13rem;}
and change 1rem value accordingly
2) The code for registering Top Info widget is there in functions.php file however the relative code snippet to display the widget area isnt there in header.php file due to which any widget being assigned there isnt showing.
To tell the specific theme where to display this widget area, You can please follow the steps outlined below :
--- Go to /wp-content/themes/Box/header.php and find this code
<?php if(get_theme_mod('box_menu_classic', 1) == 1) : ?>
<?php do_action('box_before_mainmenu'); ?>
<nav class="main-navigation" role="navigation">
<?php wp_nav_menu( array( 'theme_location' => 'mainmenu', 'menu_class' => 'nav-menu', 'fallback_cb' => false ) ); ?>
</nav><!-- #site-navigation -->
<?php do_action('box_after_mainmenu'); ?>
<?php endif; ?>
--- Add this code snippet above the relative code seen :
<?php if ( is_active_sidebar( 'Top Info' ) ) : ?>
<div id="topinfo-widget-area" class="wrap" role="complementary">
<?php dynamic_sidebar( 'Top Info' ); ?>
</div>
<?php endif; ?>
--- Thereafter, You can add css to position the specific widget properly besides logo in override.css file :
#topinfo-widget-area{float: left;width: auto;display:block;padding: 2rem 5rem;}
and assign your specific widget to Top Info widget area and adjust padding value accordingly
(Kindly do take backup of specific file before performing the aforesaid changes)
Hope this helps 🙂
Regarding other queries/issues added in posts added at later stage in similar topic, Can you start new topics so as to avoid multiplicity of varied forum posts in one topic