Last active
August 1, 2019 19:05
-
-
Save macariojames/8dcf9559baa05dcfe0b57ceef7a9253c to your computer and use it in GitHub Desktop.
Offset position of Userway.org widget
This file contains 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
// So I needed to change the position of the floating widget on mobile for my site since | |
// I have a fixed footer navbar. After not seeing any controls in the .js file, figured i'd just override it | |
// via CSS. Here you go. | |
// (Yes, using '!important' is crappy, but it was necessary to get this done.) ~mj | |
@media screen and (max-width: 768px) { | |
body .userway.userway_p3 { | |
bottom: 65px!important; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment