@media only screen and (max-width: 700px), only screen and (max-device-width: 700px)
{
Then inside here whatever the normal css is
}
You did this with the responsive theme? Awww snap. Gonna try it now.Ahhh, easy fix. Just add that mobile code and use it to not display. Like @Shelley suggested. I am certain the same code as this will work:
Code:@media only screen and (max-width: 700px), only screen and (max-device-width: 700px) { Then inside here whatever the normal css is }
What theme do you have the avatar edit on? I don't see it on Ivory.
Won't work because tall and big avatars replaces
<xen:avatar user="$user" size="m" />
WITH THIS
<xen:avatar user="$user" size="l" img="true" />
all I did was do the first template change in Ivory.When going to responsive it stays large.
<div class="avatarHolder smallAvatar">
<span class="helper"></span>
<xen:avatar user="$user" size="m" />
</div>
<div class="avatarHolder largeAvatar">
<span class="helper"></span>
<xen:avatar user="$user" size="l" img="true" />
</div>
<style>
@media only screen and (max-width: 700px), only screen and (max-device-width: 700px)
{
.largeAvatar {
display: none;
}
.smallAvatar {
display: none;
}
}
</style>
On second thought, I'm not feeling the fading out and in CSS that much anymore.
Editor still looks better than any forum software I've ever seen. Seriously the best.
A few changes to the editor have been rolled out.
Yes, along with improved focus tracking.
Also, once the editor has been activated, it will remain at full opacity.
We use essential cookies to make this site work, and optional cookies to enhance your experience.