I have been attempting to adjust the size of our website's logo ( ) for mobile viewing, but so far no code has proved effective. I've tested various iterations like the one below without success:
@media (max-width: 360px) {
.site-branding img {
max-width: 50%;
max-height: 50%;
}
}
I am unsure which CSS adjustment is needed for mobile view only, and I prefer not to alter anything on desktop view. Any advice would be greatly appreciated.
Thank you in advance for your help.