Logo and Title size do not change with small screens
-
In order to adjust for small screens the theme I created, I decided to change the layout below 780px. In my theme.json I have now this code:
{
"styles": {
"css": " @media (max-width: 1400px){ #pagelist { display: none; }} #secondary { display: none; } @media (max-width: 780px) { #sidebar { display: none; } #secondary { display: block; } .site-logo img { max-width: 30%;} .site-title a {font-size: 0.9rem;} } "
}
}Below 780 the sidebar disappear and another search block appears below the list, but the instructions for the logo and the title has no effect.
Another question is relevant to the changeover of navigation block from menu to icon ≡. By default I see that it happens at 600px: may I make it happening at 780px?
The page I need help with: [log in to see the link]
- You must be logged in to reply to this topic.