Hey @phoenixgalerie,
The theme currently does not have an option for that, but if you are familiar with coding you can use sinatra_header_widgets_before_left hook to add your own content.
You can add this snippet to your child theme’s functions.php file:
function my_custom_header_widget_socials() {
$options = array(
'menu' => 'Social Links'
);
sinatra_social_links( $options );
}
add_action( 'sinatra_header_widgets_before_left', 'my_custom_header_widget_socials' );
You can also use sinatra_header_widgets_before_right hook to add your custom widget to the right side.
Please note that sinatra_header_widgets_before_left and sinatra_header_widgets_before_right hooks were added in Sinatra v1.1.0 so make sure you are using that version or higher.
Thanks!
That works perfect !!!!
Thank you for your effort, Another adittion to my site.