Changeset 903255
- Timestamp:
- 04/26/2014 07:34:28 PM (12 years ago)
- Location:
- suppa-menu-responsive-mega-menu/trunk
- Files:
-
- 3 edited
-
readme.txt (modified) (1 diff)
-
standard/css/suppa_frontend_style.css (modified) (2 diffs)
-
standard/include/class-suppa_walkers.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
suppa-menu-responsive-mega-menu/trunk/readme.txt
r903254 r903255 5 5 Tested up to: 3.9 6 6 Stable tag: 1.0.1 7 License: GPLv2 or later8 License URI: http://www.gnu.org/licenses/gpl-2.0.html9 7 10 8 Suppa is Fast, Customizable, Powerfull and User-Friendly WordPress Mega Menu. -
suppa-menu-responsive-mega-menu/trunk/standard/css/suppa_frontend_style.css
r884533 r903255 74 74 75 75 76 /* =Logo 77 ------------------------------------ */ 78 .suppa_menu_logo a { 79 text-align: none; 80 } 81 82 76 83 /* =SubMenus General 77 84 ------------------------------------ */ … … 83 90 position: absolute; 84 91 } 92 93 94 95 85 96 86 97 -
suppa-menu-responsive-mega-menu/trunk/standard/include/class-suppa_walkers.php
r885465 r903255 655 655 656 656 $output .= '<div style="'.$this_item_position_css.'" class="suppa_menu suppa_menu_logo suppa_menu_'.$this->top_level_counter.'">'; 657 $output .= $link_html;657 $output .= '<a '.$attributes.' >'.$link_html.'</a>'; 658 658 $output .= '</div><!--Suppa Logo-->'; 659 659 } … … 683 683 } 684 684 } 685 686 687 // Links688 else if( 'links' == $this->menu_type )689 {690 if( $depth === 1 )691 {692 $output .= '<div class="suppa_column" style="width:'.$this->links_column_width.';">';693 $item_output = '<a class="'.$class_names.' suppa_column_title" '.$attributes.' >'.$link_html.'</a> ';694 $output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );695 }696 else if ( $depth >= 2 )697 {698 $item_output = '<a class="'.$class_names.' suppa_column_link" '.$attributes.' >'.$link_html.'</a> ';699 $output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );700 }701 }702 703 704 /*705 echo '<pre>';706 print_r( $item );707 echo '</pre><hr/>';708 */709 685 710 686 }
Note: See TracChangeset
for help on using the changeset viewer.