Hi... Whats the correct code for the @media css override in custom.css?
For example..:
@media (max-width: 575.98px)
.acm-clients.style-1 .client-img img {
max-height: 20px;
}
Above is the original code from the browser but i want this to be 80px instead of 20px.....
@media (max-width: 575.98px)
.acm-clients.style-1 .client-img img {
max-height: 80px;
}
Above is what i put in the custom.css but this doesnt seem to work.
Can you help?
Dragos