Album layout on mobile device Issue

Cliff
Cliff
Offline
0
Hi guys, Is there a way to get the album layout columns to pile up rather than be responsive side by side as per the enclosed screen shot. Is there a setting I have missed? :o

Issue is that both columns are just too small to be worthwhile - for example you cannot select a song at all...

Cheers
Attachments:
Responses (2)
  • Accepted Answer

    Sunday, June 03 2018, 04:21 PM - #Permalink
    0
    I am also facing the same issue.
    Is anyone listening, I am planning to renew the tool, however, since this is not responsive, I will have to think about it again.
    The reply is currently minimized Show
  • Accepted Answer

    Sunday, June 03 2018, 07:01 PM - #Permalink
    0
    Dear Cliff,

    Not sure when will we have a response from the Dev, however, I have figured it out using the following custom code.

    Just add the following code in custom.css and it shall do the trick for any screen smaller than 600px, the display will turn into responsive layout.

    @media only screen and (max-width: 600px)
    {
    .material-card .title {
    display: block;
    overflow: hidden;
    white-space: pre-line;
    font-size: 15px;
    line-height: 18px;
    font-weight: 400;
    color: #212121;
    text-decoration: none;
    cursor: pointer;
    outline: none;
    }

    .first_col_content.span5.col-sm-5 {
    width: -webkit-fill-available;
    }

    .span7.col-sm-7.noMarginBs2 {
    width: -webkit-fill-available;
    }
    }


    Hope you find it helpful.

    Best Regards,
    Syed H
    The reply is currently minimized Show
Your Reply