Last active
August 29, 2015 14:19
-
-
Save singerxt/3e67c1c3e888f5756235 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Someone tried to combine first and third rotator using css classes | |
// Because now featured rotator is now between first and third rotator looks broken. | |
// this is happening only on mobile | |
//first rotator | |
<div class="playlist-node"> | |
<div class="title">Title</div> | |
<div class="rotator" style="display: none!important"></div> | |
</div> | |
//featured rotator | |
<div class="playlist-node"> | |
<div class="title">Title</div> | |
<div class="featured-rotator"></div> | |
</div> | |
//third rotator | |
<div class="playlist-node"> | |
<div class="title" style="display: none!important">Title</div> | |
<div class="rotator"></div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment