Website title & link colour

Hello, Movin!

By default the website title in displayed in the center of the page, under the horizontal menu. Is it possible to move it to the horizontal menu and display it in the top left corner, and change its font (I’d like to use Montserrat for the title, ?

Also, is it possible to customize the mouse-over colour of all links?

Thank you,
Olya

Hi Olya,

I hope you are well today and thank you for your question.

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Activello Options -> Other -> Custom CSS

.site-name a.navbar-brand {
    font-family: 'Montserrat', sans-serif;
}
#masthead {
    position: relative;
}
#logo span.site-name {
    position: absolute;
    left: 110px;
    top: 20px;
}
.navbar.navbar-default .container {
    padding-left: 135px;
}

Best Regards,
Movin