Is it possible to set the mobile view to a minimum width (lets say 480 for example) and where do I set that?
Best Ralf
PS: Good Work!
Hi rseybold!
You can use media queries as following
@media only screen and (max-width: 480px) {
.logo { display: none; }}
That would hide logo on screens smaller than 480px. If you can elaborate on what you would like to do, we can help you better
Best regards,
Yigit
That works for me, thanks