XF 2.2 title the title of the site instead of the logo

sandokloud

Active member
I need support to improve the mobile speed, can you guide me step by step to make the title appear instead of the image of the logo only from mobile? in a nutshell I would like to appear only the name of the site for mobile and desktop logo. the forum version is the latest 2.2, thanks in advance.
 
You can check this tips from @Brogan
 
I have already seen this, but it seems to change it for both mobile and desktop versions, I'm looking for a guide to use only text in mobile and on desktop the logo image
 
Add this to your extral.less template
Less:
.ctaLogoTextSmall {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 800;
    font-family: 'Arial', sans-serif;
    color: #ff9900;
}

.p-nav-smallLogo {
    max-width: 140px;

    & a {
        text-decoration: none;
    }

    & img {
        display: inline;
    }
}

.p-header-content {
    padding: 0 0;
}
Adjust as you want (y)
 
Top Bottom