Guest User

Untitled

a guest
Jun 20th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. <style>
  2.  
  3. .element_panel
  4. {
  5. -webkit-border-radius: 8x;
  6. -moz-border-radius: 8px;
  7. border-radius: 8px;
  8.  
  9. background-color: green;
  10.  
  11. width: 680px;
  12. height: 180px;
  13.  
  14. margin-bottom: 35px;
  15. }
  16.  
  17. .element_logo
  18. {
  19. padding: 15px;
  20. width: 150px;
  21. height: 130px;
  22. background-color: blue;
  23. float: left;
  24.  
  25. }
  26.  
  27. .element_image
  28. {
  29. width: 150px;
  30. height: 130px;
  31. background-color: yellow;
  32. background: center center no-repeat;
  33. display: block;
  34. }
  35.  
  36. .element_maintitle
  37. {
  38. width: 300px;
  39. height: 50px;
  40. }
  41.  
  42. </style>
  43.  
  44. <div class="element_panel">
  45.  
  46. <div class="element_logo" >
  47. <div class="element_image" <?php echo getRestaurantLogo( $data->user->username ); ?>/>
  48. </div>
  49.  
  50. <div class="element_maintitle">
  51. <?php echo getRestaurantLink( $data ); ?>
  52. </div>
  53.  
  54. </div>
Add Comment
Please, Sign In to add comment