Advertisement
deadhead1971

Testimonials content template in Toolset

Aug 24th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.70 KB | None | 0 0
  1. Template Section. Copy this first section into the Template part of the Toolset Editor.
  2.  
  3. <div class="testimonial-inner">
  4. <div class="testimonial-heading"><h3>[types field='headline'][/types]</h3></div>
  5. <div class="testimonial-content">
  6. <div class="testimonial-image">[types field='image' title='%%TITLE%%' alt='%%ALT%%' size='thumbnail' resize='proportional'][/types]</div>
  7. <div class="maybe-clear"></div><p>[types field='comment'][/types]</p>
  8. </div>
  9. <div class="testimonial-client">
  10. <div class="testimonial-name"><strong>[types field='name'][/types]</strong></div>
  11. [types field='website' target='_blank'][/types]
  12. </div>
  13. <div class="clear"></div>
  14. </div>
  15.  
  16. CSS section - copy the following CSS into the CSS editor section of the Toolset Editor.
  17. You will need to edit the part that says *PATH TO YOUR QUOTES IMAGE*, to an actual location of the quotes image on your site.
  18.  
  19. .testimonial-inner {
  20. border: 1px solid #bdbdbd;
  21. padding: 20px;
  22. text-align: left;
  23. display: block;
  24. width: 100%;
  25. height: 100%;
  26. box-sizing: border-box;
  27. }
  28.  
  29. .testimonial-heading {
  30. background: url(*PATH TO YOUR QUOTES IMAGE*) no-repeat scroll left center transparent;
  31. margin-top: 0;
  32. padding-left: 40px;
  33. text-align: left;
  34. margin: 0 0 20px;
  35. }
  36.  
  37. .testimonial-content {
  38. box-sizing: border-box;
  39. display: block;
  40. }
  41.  
  42. .testimonial-image {
  43. margin-top: 0.25em;
  44. margin-right: 1em;
  45. margin-bottom: 0.25em;
  46. float: left;
  47. max-width: 100%;
  48. }
  49.  
  50. .testimonial-image img {
  51. border-radius: 5px;
  52. }
  53.  
  54. .maybe-clear {
  55. content: "";
  56. width: 6em;
  57. display: block;
  58. overflow: hidden;
  59. }
  60.  
  61. .testimonial-client {
  62. margin-top: 1em;
  63. text-align: right;
  64. }
  65.  
  66. .clear {
  67. clear: both;
  68. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement