Site logo shrinks in mobile view ? I have a peculiar issue. My site logo reduces in size ( almost 75% ) in mobile view.
Any help ?
@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;
}
@Tray2 I want the same ratio as on desktop. Presently its hardly visible on mobile.
@FounderStartup How would I know? Im not the designer? 200px maybe? Talk to the designer to find the best value
@Sinnbeck I got it chief. Problem solved :). Thanks !!
@Sinnbeck BTW how you exactly got to the code line ?
@Sinnbeck :) I am the one handling everything :)
@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.
Check your CSS because that is where you set the size of all elements,
Please sign in or create an account to participate in this conversation.