Code: Select all
@media (max-width: 1000px) {
}
Thanks
Code: Select all
@media (max-width: 1000px) {
}
Code: Select all
img.avatar {
border-radius: 50%;
}
@media only screen and (max-width: 600px) {
}
Code: Select all
display: none!important;
Code: Select all
img.avatar {
border-radius: 50%;
display: none;
}
@media only screen and (min-width: 600px) {
}
Code: Select all
img.avatar {
border-radius: 50%;
}
img[src*="gravatar"] {
border-radius: 50%;
}
Code: Select all
@media (max-width: 320px) {
select, .inputbox {
max-width: 240px;
}
}
Code: Select all
img.avatar {
border-radius: 50%;
@media only screen and (min-width: 600px) {
.img.avatar {
display: none!important;
}
}
Code: Select all
@media (max-width: 700px) {
.postprofile .avatar img {
width: auto !important;
height: auto !important;
max-height: 32px;
}
}
Code: Select all
img.avatar {
border-radius: 50%;
}
@media only screen and (max-width: 700px) {
img.avatar {
display: none !important;
}
}
Code: Select all
@media only screen and (max-width: 700px) {
img.avatar {
border-radius: 50%;
}
}