Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author charlestang

    (@charlestang)

    if you use the class feature, the wrapper of the player will look like this

    <div class='my-specific-class'>
    blah blah blah ....
    </div>

    so is the id(Note: every id must be unique on whole page):

    <div class='my-specific-class' id='my-specific-id'>
    blah blah blah ....
    </div>

    both of them help you to customize the player with CSS.

    you can put the code on you <head> section like

    div.my-specific-class {
    position: absolute;
    top:100px;
    left:100px;
    }

    or like this:

    #my-specific-id {
    position: absolute;
    top:100px;
    left:100px;
    }

    Charles, do I need to enter this differently in the CSS for the sidebar widget?
    I’m trying to horizontally center the player in the sidebar. Any help would be appreciated.

    Thread Starter audiofactory

    (@audiofactory)

    Thank you that’s very helpful.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Plugin: Flash MP3 Player] Using Class to position the player’ is closed to new replies.