Scroll Bar Issue

haytham
haytham
Offline
0
Hi
There is a small scroll bar is shown below each artist and I want to remove it

Please refer to the attachemnt
Attachments:
Responses (5)
  • Accepted Answer

    Wednesday, October 26 2016, 03:01 PM - #Permalink
    0
    I don't know.. can you give me a link to check?
    The reply is currently minimized Show
  • Accepted Answer

    haytham
    haytham
    Offline
    Wednesday, October 26 2016, 04:50 PM - #Permalink
    0
    The reply is currently minimized Show
  • Accepted Answer

    Wednesday, October 26 2016, 05:00 PM - #Permalink
    0
    oh, 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;
    }
    The reply is currently minimized Show
  • Accepted Answer

    haytham
    haytham
    Offline
    Thursday, October 27 2016, 07:57 AM - #Permalink
    0
    Hi
    It is not solved, i noticed that it is also shown on your demo website!
    On the other hand I download the latest version 3.0.3, but it still shown in my system as 3.0.14
    The reply is currently minimized Show
  • Accepted Answer

    Thursday, October 27 2016, 09:22 AM - #Permalink
    0
    try 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;
    }
    The reply is currently minimized Show
Your Reply