0
Hi
There is a small scroll bar is shown below each artist and I want to remove it
Please refer to the attachemnt
There is a small scroll bar is shown below each artist and I want to remove it
Please refer to the attachemnt
Responses (5)
-
Accepted Answer
0oh, well, I see. this is just because it will show up to 4 albums (if present), so it's "making room" for those albums.
If you want to avoid this, just open file /components/com_muscol/assets/css/album.css
go to line 1579, you will see
.albums-artist {
height: 80px;
width: 238px;
}
just remove the width option:
.albums-artist {
height: 80px;
} -
Accepted Answer
-
Accepted Answer
0try also on line 1569
.albums-artist-wrapper {
background-color: #f4f4f4;
padding: 15px;
overflow-x: scroll;
overflow-y: hidden;
height: 80px;
border-top: 1px solid #e7e7e7;
}
just remove the scroll option:
.albums-artist-wrapper {
background-color: #f4f4f4;
padding: 15px;
overflow-x: hidden;
overflow-y: hidden;
height: 80px;
border-top: 1px solid #e7e7e7;
}
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 »