Guest User

Untitled

a guest
Aug 12th, 2014
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.50 KB | None | 0 0
  1. @layout.latte
  2.  
  3. <div id ="artIconMenu">
  4.         {include Panel/iconMenu.latte}
  5.     </div>
  6.  
  7. iconMenu.latte
  8. <a n:href="Articles:addArticle" class="btn-add"></a>
  9. <a n:href="Articles:edit" class="btn-edit"></a>
  10.  
  11. CSS
  12.  
  13. #artIconMenu
  14. {
  15.    
  16.     float:right;
  17. }
  18.  
  19. .btn-add
  20. {
  21.   background:url(../images/icons/edit.png) no-repeat;
  22.   display:block;
  23.     width:50px;
  24.     height:50px;
  25. }
  26. .btn-edit
  27. {
  28.   background:url(../images/icons/edit.png) no-repeat;
  29.   display:block;
  30.     width:50px;
  31.     height:50px;
  32. }
Advertisement
Add Comment
Please, Sign In to add comment