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?
Issue is that both columns are just too small to be worthwhile - for example you cannot select a song at all...
Cheers
Issue is that both columns are just too small to be worthwhile - for example you cannot select a song at all...
Cheers
Responses (2)
-
Accepted Answer
-
Accepted Answer
0Dear 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
Your Reply
Please login to post a reply
You will need to be logged in to be able to post a reply. Login using the form on the right or register an account if you are new here.
Register Here »