Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Maeve Lander

    (@enigmaweb)

    Increasing the width of the player should fix the long title issue. Other than that you could try a bit of CSS tweaking to increase the size and/or padding of the title space so that longer titles don’t throw out the layout.

    Thread Starter franzvz

    (@franzvz)

    I’m messing with it and I am close. Here’s what I got.

    Case 1:

    .title {
    display:inline!important;
    margin-left:5px!important;
    }

    yields this –> http://i.imgur.com/yosPSxo.png

    Case 2:

    .title {
    margin-left:5px!important;
    width:340px!important;
    }
    
    .rightdiv{
    width:20px!important;
    }

    yields this –> http://i.imgur.com/ORPCUdw.png

    So the width works on that one, but the inline is broken. So I though to combine them:

    Final Case:

    .title {
    display:inline!important;
    margin-left:5px!important;
    width:340px!important;
    }
    
    .rightdiv{
    width:20px!important;
    }

    yields: http://i.imgur.com/w7BZETJ.png

    display and width doesn’t want to co-operate together.

    If you have any solutions let me know!

    PS: I even tried editing ttw-music-player.php setting up a table to align things better, with some 1 TR and a two TD’s, and I was very close but still not close enough.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Long Titles / 2 Lines’ is closed to new replies.