I added a new field to profiles titled Website and on the mini profile postbit, the link extends too far into other areas. I tried expanding my browser and it didn't correct. Sent a screenshot on Discord.
Field Added Extended Too Far on Mini Profile
Thanks, will have this fixed soon!
Hi,
For a quick fix for now: head over to Themes -> Themes, click Edit Stylesheet for the theme(s) that you are using and paste:
.mini-profile--custom dl dd {
overflow-y: auto;
}
... to add a vertical scrollbar to that area or
.mini-profile--custom dl dd {
overflow-wrap: anywhere;
}
... to add a line break where the text would start extending out of the area. :)
Last edited by Mace
Mace said:Hi,
For a quick fix for now: head over to Themes -> Themes, click Edit Stylesheet for the theme(s) that you are using and paste:
.mini-profile--custom dl dd { overflow-y: auto; }... to add a vertical scrollbar to that area or
.mini-profile--custom dl dd { overflow-wrap: anywhere; }... to add a line break where the text would start extending out of the area. :)
Thank you! I opted for the second option and it works!
Mace said:Hi,
For a quick fix for now: head over to Themes -> Themes, click Edit Stylesheet for the theme(s) that you are using and paste:
.mini-profile--custom dl dd { overflow-y: auto; }... to add a vertical scrollbar to that area or
.mini-profile--custom dl dd { overflow-wrap: anywhere; }... to add a line break where the text would start extending out of the area. :)
Thanks! Have added the overflow to the theme for now until I've fixed it internally.