Hi,
I am using the code below in my additional.css, but the issue I'm facing now is that some of my users use small avatars (even as small as 28 x 22 px) and they are enlarged now. Is there a line of code I can use so that they will be displayed at their original size?
I am using the code below in my additional.css, but the issue I'm facing now is that some of my users use small avatars (even as small as 28 x 22 px) and they are enlarged now. Is there a line of code I can use so that they will be displayed at their original size?
Code:
.l-col__flex-3, .l-row__fixed--left > .l-col__flex-3 { margin-left: 240px!important; } .b-userinfo__details { width: 240px; margin-left: -20px; } .l-desktop .b-userinfo { width: 210px; } .b-avatar--m { height: 125px!important; width: 125px!important; } .b-avatar--m > img { max-height: 125px!important; max-width: 125px !important; height: 125px!important; width: 125px!important; } [USER="3396"]media[/USER] only screen and (max-width: 783px) { .l-col__flex-3, .l-row__fixed--left > .l-col__flex-3 { margin-left:0px!important; float:none!important; } .b-userinfo__details { margin-left: 0; display:none; } .b-avatar--m { height: 60px!important; width: 60px!important; } .b-avatar--m > img { max-height: 60px!important; max-width: 60px !important; height: 60px!important; width: 60px!important; }}
Comment