Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

WordPress

How do I make my mobile logo bigger?

For my website "www.upliftmind.com" my logo size on mobile devices are too small. Does anybody know the custom css I can add to the theme options to increase size? Thanks

1 Answer

Tim Holley
Tim Holley
8,464 Points

I can tell you where to start.

@media (max-width: 767px) and (min-width: 0px)
.oi_logo_place img {
  width: 80px !important;
}

This is what is being applied to your logo when it gets down below 767px. You can start by just changing that to the size you want.

Not working