Hi @aligha3mi!
To enable Boardwalk’s logo support, you’ll want to install and activate the Jetpack Plugin.
Once that is done, you’ll see an option in your Customizer for Site Title, Tagline, and Logo.
When you first add your logo it will sit above the title, but we can change that with a bit of CSS:
.site-branding .clear {
float: left;
clear: none;
}
To add that CSS, you can use the Additional CSS panel in the Customizer (assuming you’re running at least WordPress 4.7) or with something like the Jetpack Plugin using the Custom CSS Module
Moving the social media buttons will depend a bit on how you added them in there in the first place.
It looks like you may have manually coded them in, is that right? If so, make sure you are using a child theme so they don’t get erased in a future theme update. I’d recommend putting them in a container, so you can move them around as a single unit, and placing them outside of the .site-branding
element so they aren’t limited to its width.
If you aren’t able to move them using those tips, tell me a little more about how you’ve created those icons (feel free to post your code if you have it) and I’ll see what we can do!