Hi @baeprod,
To implement the idea as you wish, I would like to suggest two solutions as follows:
- Solution 1: You can integrate the Site name and site slogan into the logo icon into an image and then add it to the logo image section.
- Solution 2: Copy the code below into the Edit Custom CSS modal section. Then upload the logo icon (your-logo-icon-name.png) into the images folder on your website.
.navbar-brand.logo-text > a::before {
mask: none;
background-color: transparent;
background: url('../../../../images/[**your-logo-icon-name**].png') no-repeat center center;
}
.navbar-brand.logo-text > a {
position: relative;
}
.navbar-brand.logo-text .site-slogan {
position: absolute;
left: 36px;
bottom: 0;
font-size: 14px;
margin-top: 0;
margin-bottom: -8px;
}
Reload your website to view the change.