Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. // So I needed to change the position of the floating widget on mobile for my site since
  2. // I have a fixed footer navbar. After not seeing any controsl in the .js script, figured i'd just override it
  3. // via CSS. Here you go.
  4. // (Yes, using '!important' is crappy, but it was necessary to get this done.) ~mj
  5.  
  6. @media screen and (max-width: 768px) {
  7. body .userway.userway_p3 {
  8. bottom: 65px!important;
  9. }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement