Advertisement
fahimmurshed

Remove menu item dotted border and it's color

Oct 19th, 2021 (edited)
1,286
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.55 KB | None | 0 0
  1.  
  2. .hfe-nav-menu a.hfe-menu-item:focus {
  3.     outline: none;
  4. }
  5.  
  6. /* Or */
  7. .ast-theme-transparent-header .main-header-menu .menu-link {
  8.     outline: none;
  9. }
  10.  
  11. /* Or */
  12. .ast-theme-transparent-header .ast-builder-menu .main-header-menu .menu-item:hover > .ast-menu-toggle {
  13.     border: none;
  14. }
  15.  
  16. /**/
  17. .main-header-menu a:focus {
  18. outline: none;
  19. }
  20.  
  21. /**/
  22. /* Remove outline for non-keyboard :focus */
  23. *:focus:not(.focus-visible) {
  24.   outline: none;
  25. }
  26.  
  27. /* Optional: Customize .focus-visible */
  28. .focus-visible {
  29.   outline: lightgreen solid 2px;
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement