menu_icons_css_item.tpl.php in Menu Icons 7.3
Same filename and directory in other branches
Template file for generating the CSS file used for the menu-items
1 theme call to menu_icons_css_item.tpl.php
- menu_icons_css_generate in ./
menu_icons.module - Build CSS based on menu IDs
File
menu_icons_css_item.tpl.phpView source
<?php
/**
* @file
*
* Template file for generating the CSS file used for the menu-items
*/
/**
* Variables:
* $mlid
* $path
*/
?>
a.menu-<?php
print $mlid;
?>, ul.links li.menu-<?php
print $mlid;
?> a {
background-image: url(<?php
print $path;
?>);
padding-<?php
print "{$pos}:{$size}";
?>px;
background-repeat: no-repeat;
background-position: <?php
print $pos;
?>;
height: <?php
print $height;
?>px;
}