How to move timeline bar in music player below?

大兔子大兔子 提交于 2019-12-25 08:21:16

问题


I want to move the status bar in music player in my site, to be the same like this site. So need to move below for 100px I suppose, but I can't find the right class, to change myself. I think that class is this:

.player-box .jp-seek-bar { 
  padding-bottom:100px; --> But manipulation this value don't change nothing!
}

Also, how to change status bar to be the same color like demo site I provided?


回答1:


7 Steps for Troubleshooting or "Why Isn't My CSS Showing?!"

  1. Clear the cache: CMS's like Drupal very helpfully stash your CSS so it's zippy when you reload the page...and using the old, unchanged CSS.
  2. Check the URL: Make sure you're looking at the right environment, which comes up more often than you might think. Use the inspector to see if your changes are getting consumed.
  3. C is for Cascading: The last definition wins, so ensure you're not overriding yourself later in the document. The order of the individual stylesheets matters too. If a plugin's stylesheet is loaded after your custom styles, it wins the throwdown.
  4. Preflight it: Try it in the browser inspector dev tools before putting into your custom styles.
  5. Details matter: Check your spelling, match your brackets. Are all your semicolons in place? Run it through a validator: https://jigsaw.w3.org/css-validator/
  6. Oh javascript: If you're overriding an inline style set by javascript you'll either need to track down the javascript setting it or use the !important stick in your CSS.
  7. Caniuse: If your style definition is something a little edgy, it's possible the browser doesn't support that CSS property. Check http://caniuse.com/ before you drive yourself crazy trying to get IE to behave.


来源:https://stackoverflow.com/questions/40978221/how-to-move-timeline-bar-in-music-player-below

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!