Home Forums Trusted Pro Bigger Icon Home Page Reply To: Bigger Icon Home Page

#4229
Andy
Keymaster

To remove the title, add the following to Customize > Additional CSS

.home .main-title {
    visibility: hidden;
}

Then to keep the icon visible while the title is hidden, add this css:

.home .header-title .fa,
.home .header-title .main-title-img{
    font-size: 24px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    visibility: visible;
}

change the font-size, width, height and line-height to suit e.g. width: 80px; will be twice the standard width.

If you are using your own uploaded image in place of one of the theme’s icons, you will also need to add this css:

.home .main-title .main-title-img img{
    width: 40px;
    max-width: 40px;
    height: 40px;
    max-height: 40px;
}

again change the ’40px’ to whatever you need.