how to hide and show different things on different screen sizes on css code example
Example: show hide item based on display size
@media only screen and (max-width: 1026px) {
#fadeshow1 {
display: none;
}
}
@media only screen and (max-width: 1026px) {
#fadeshow1 {
display: none;
}
}