Hello,
forum: http://www.jwfan.com/forums
On IPBoard 4.4, we had this in our custom.css that made avatars display bigger in desktop, and this didn't affect mobile
.ipsUserPhoto_large img, img.ipsUserPhoto_large, .ipsUserPhoto_large:after {
width: 120px;
height: 120px;
{{if theme.rounded_photos}}
border-radius: 45px;
{{endif}}
}
If I put this same code into the custom.css of our (default) theme now that we're on IPBoard 4.5., the avatars look fine on desktop (well, almost fine, the badges for admins are off-center) but it completely breaks the mobile view
Does anybody know what CSS I can use to affect desktop avatar size only but leave mobile CSS alone?
Maybe some kind of if statement that determines if the parent is "cAuthorPane_info" vs "cAuthorPane_mobile" ?