$conf, $runtime; function_exists('chdir') AND chdir(APP_PATH); $r = 'mysql' == $conf['cache']['type'] ? website_set('runtime', $runtime) : cache_set('runtime', $runtime); } function runtime_truncate() { global $conf; 'mysql' == $conf['cache']['type'] ? website_set('runtime', '') : cache_delete('runtime'); } register_shutdown_function('runtime_save'); ?>WP audio playlist width|Programmer puzzle solving
最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

WP audio playlist width

matteradmin6PV0评论

How can I adjust the width on the WP audio playlist if I'm using the following:

[wpse_playlist tracknumbers="false" images="false" artist="false"]
   [wpse_trac title="Track1'" src="www.mypage/audio/track1.mp3]
   [wpse_trac title="Track2'" src="www.mypage/audio/track2.mp3]
   [wpse_trac title="Track3'" src="www.mypage/audio/track3.mp3]
[/wpse_playlist]

How can I adjust the width on the WP audio playlist if I'm using the following:

[wpse_playlist tracknumbers="false" images="false" artist="false"]
   [wpse_trac title="Track1'" src="www.mypage/audio/track1.mp3]
   [wpse_trac title="Track2'" src="www.mypage/audio/track2.mp3]
   [wpse_trac title="Track3'" src="www.mypage/audio/track3.mp3]
[/wpse_playlist]
Share Improve this question edited Nov 14, 2018 at 21:58 Nisse Engström 1151 silver badge2 bronze badges asked Nov 14, 2018 at 20:40 MrinjMrinj 1 0
Add a comment  | 

1 Answer 1

Reset to default 0

Found a solution:

    <div style="float:left;width:50%;">
    <div style="padding-right:10px;">

    [playlist images="false" artists="false" ids="639,640,641"]
    </div></div>

    <div style="float:right;width:50%;">
    <div style="padding-left:10px;">

    [playlist images="false" artists="false" ids="639,640,641"]
    </div></div>

    <div style="clear: both;"></div> 

Best,

Articles related to this article

Post a comment

comment list (0)

  1. No comments so far