FounderStartup's avatar

Site logo shrinks in mobile view ?

I have a peculiar issue. My site logo reduces in size ( almost 75% ) in mobile view.

Any help ?

0 likes
13 replies
Sinnbeck's avatar
Sinnbeck
Best Answer
Level 102

@FounderStartup You have a css media query to set the max with to 100px. style.css on line 2128

@media (max-width: 1099px)
#logo img {
    border: none;
    max-width: 100px;
    height: auto;
}
1 like
Sinnbeck's avatar

@FounderStartup How would I know? Im not the designer? 200px maybe? Talk to the designer to find the best value

1 like
Sinnbeck's avatar

@FounderStartup Ah ok :) I know it from chrome dev tools. Open the site and rightclick the logo. Pick "Inspect element" from the list, and look to the right. Threre you should see the css along with the file and line.

1 like
Tray2's avatar

Check your CSS because that is where you set the size of all elements,

1 like

Please or to participate in this conversation.