Hi @jassimoes,
Firstly: Apologies for the delay in reply here. Automattic (the folk behind the theme you’re using) were away at our annual company retreat last week, but we’re back now.
I’m glad you really seem to be enjoying Goran. ??
You could get the logo and title to line up side by side with some custom CSS.
To add custom CSS: Firstly set up a child theme or activate a custom CSS plugin. (If you have Jetpack installed then you can activate its custom CSS module.)
The following snippet worked to line up the logo and title on my own test installation of Goran:
@media screen and (min-width: 1230px) {
.site-branding {
width: 800px;
}
.site-logo-link {
float: left;
}
.site-title {
clear: none;
margin-top: 30px;
}
}
Increase/decrease the width of .site-branding, depending on how much space you wish your logo and title (combined) to take up. In addition, change the value of margin-top to control how far from the top of your screen .site-title appears.
Give that a try and let me know how you get on! If it doesn’t work out for you, please share a link to your site and I’ll help out further from there.
Thanks!