Guest User

Progressive Magento: 5th and 6th level menu fix

a guest
Oct 13th, 2014
291
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.76 KB | None | 0 0
  1. Please replace this code snippet:
  2.  
  3.  
  4. .header .primary .sub .sub .sub .sub {
  5.   background: none;
  6.   border: 0 none;
  7.   -webkit-box-shadow: none;
  8.   -moz-box-shadow: none;
  9.   box-shadow: none;
  10.   display: block;
  11.   left: 0;
  12.   padding: 0;
  13.   position: relative;
  14.   -webkit-animation: fadeIn 0;
  15.   animation: fadeIn 0;
  16. }
  17.  
  18.  
  19. with this one:
  20.  
  21.  
  22. .header .primary .sub .sub .sub .sub {
  23.   background: none;
  24.   border: 0 none;
  25.   -webkit-box-shadow: none;
  26.   -moz-box-shadow: none;
  27.   box-shadow: none;
  28.   display: block;
  29.   left: 0;
  30.   padding: 0 0 0 10px;
  31.   position: relative;
  32.   -webkit-animation: fadeIn 0;
  33.   animation: fadeIn 0;
  34. }
  35. .header .primary .sub .sub .sub .parent > a:after {
  36.   display: none;
  37. }
  38.  
  39.  
  40. in the file 'skin/frontend/progressive/default/css/style.css'.
Advertisement
Add Comment
Please, Sign In to add comment