*

mwindey

  • *****
  • 478 posts
Making user items-box more flexible
« on: June 18, 2022, 11:54:14 AM »
Is it possible to make the items-box in the user account overview more flexible in stylesheet?
I have the sms buttons in that place and that makes the text of one listing visible over the line of the next.... In other words, it rolls over each other and becomes a mess. Attachments show what happens in tablet view.

Marked as best answer by frosticek on June 30, 2022, 01:51:09 PM
*

mwindey

  • *****
  • 478 posts
Re: Making user items-box more flexible
« Reply #1 on: June 19, 2022, 03:08:19 PM »
Solved in the meantime by changing height from 200px to 100% in style.css
line:
Code: [Select]
.items-box .item .body {width:calc(100% - 220px);height:200px;display:flex;flex-direction: column;align-items: flex-start;padding:10px 0;position:relative;}TO:
Code: [Select]
.items-box .item .body {width:calc(100% - 220px);height:100%;display:flex;flex-direction: column;align-items: flex-start;padding:10px 0;position:relative;}

*

MB Themes

Re: Making user items-box more flexible
« Reply #2 on: June 30, 2022, 09:56:56 AM »
@mwindey
I think setting height to auto could also work, or?
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

*

mwindey

  • *****
  • 478 posts
Re: Making user items-box more flexible
« Reply #3 on: June 30, 2022, 11:43:54 AM »
@MB Themes

Changed, tested and approved  8)
Thanks