So I have two logos, one is slightly more compact, and I want to use that as soon as the website is viewed on a mobile phone. How do I swap the logo dynamically?
Create 2 logo elements and show one only on mobile and one only on desktop.
1 Like
How do I turn one invisible?
EDIT:
I tried to add custom CSS:
root {
display: none;
}
but I can’t get separate custom CSS for different breakpoints it seems, unless I have to put the condition into the CSS?
EDIT2: Found it under MISC in the items properties! Problem Solved.
1 Like