mikeoberdick

Toggle Divi Theme Submenu on Mobile [CSS]

Feb 21st, 2016
5,325
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.53 KB | None | 0 0
  1. #main-header .et_mobile_menu li ul.sub-menu.hide {
  2.     display: none!important;
  3. }
  4.  
  5. #main-header .et_mobile_menu li ul.sub-menu.visible {
  6.     display: block!important;
  7. }
  8.  
  9. .et_mobile_menu .menu-item-has-children > a:after {
  10.         content: '';
  11.         width: 0;
  12.         height: 0;
  13.         border-left: 7px solid transparent;
  14.         border-right: 7px solid transparent;
  15.         border-top: 7px solid #ffffff;
  16.     position: absolute;
  17.         right: 25px;
  18. }
  19.  
  20. .et_mobile_menu .menu-item-has-children > a:hover:after {
  21.     border-top: 7px solid #cc0000;
  22. }
Add Comment
Please, Sign In to add comment