Can’t change site-title size for Wellington mobile
-
Can’t change site-title size for mobile on Wellington. Using site-title [font] changed desktop but would not change mobile/phone version. After searching and searching and many different @media CSS attempts the following finally solved my problem. I couldn’t find it using Mozilla Inspector but i did find it using Chrome.
Went to site
Upper right 3 dots… “Customize and Control Google Chrome”
–> More Tools
–> Developer Tools
Then did some digging…. Found “Mobile Medium”
Putting the following in WordPress -> customizing, “Additional CSS” solved my problem, hope this helps…/*————————————————————–
## 17.9 – Mobile Medium ( < 480px )
————————————————————–*/
@media only screen and (max-width: 30em) {
.site-branding .site-title {
font-size: 6px;
font-size: 1.25rem;
}
}
- The topic ‘Can’t change site-title size for Wellington mobile’ is closed to new replies.