Advertisement
Guest User

Untitled

a guest
Jan 31st, 2018
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.10 KB | None | 0 0
  1. /*Change the height of each product on the form*/
  2. span.form-product-item.hover-product-item {
  3.     height : 50px;
  4. }
  5.  
  6. /*add image to Subscription 1*/
  7. div#cid_21 .form-product-item:nth-child(2) .form-product-item-detail:before {
  8.     content : "";
  9.     background-image : url(http://edensmeats.com/wp-content/uploads/2018/01/American-Gothic.gif);
  10.     padding : 0px 51px 34px 0px !important;
  11.     background-repeat : no-repeat;
  12.     color : transparent !important;
  13.     background-size : 50px;
  14. }
  15.  
  16. /*add image to Subscription 2*/
  17. div#cid_21 .form-product-item:nth-child(4) .form-product-item-detail:before {
  18.     content : "";
  19.     background-image : url(http://edensmeats.com/wp-content/uploads/2018/01/lumberjack-4.jpg);
  20.     padding : 0px 51px 34px 0px !important;
  21.     background-repeat : no-repeat;
  22.     color : transparent !important;
  23.     background-size : 50px;
  24. }
  25.  
  26. /*add image to Subscription 3*/
  27. div#cid_21 .form-product-item:nth-child(6) .form-product-item-detail:before {
  28.     content : "";
  29.     background-image : url(http://edensmeats.com/wp-content/uploads/2018/01/images-bicycle-basket-2.jpg);
  30.     padding : 0px 51px 34px 0px !important;
  31.     background-repeat : no-repeat;
  32.     color : transparent !important;
  33.     background-size : 50px;
  34. }
  35.  
  36. /*add description to Subscription 1*/
  37. div#cid_21 .form-product-item:nth-child(2)::after {
  38.     content : "whole hog distributed monthly in 25 lb pkgs, 4 whole chickens/month, 18 eggs/week";
  39.     position : relative;
  40.     padding-left : 74px;
  41.     color : black;
  42.     font-style : italic;
  43. }
  44.  
  45. /*add description to Subscription 2*/
  46. div#cid_21 .form-product-item:nth-child(4)::after {
  47.     content : "half hog distributed monthly in 12.5 lb pkgs, 2 whole chickens/month, 12 eggs/week ";
  48.     position : relative;
  49.     padding-left : 74px;
  50.     color : black;
  51.     font-style : italic;
  52. }
  53.  
  54. /*add description to Subscription 3*/
  55. div#cid_21 .form-product-item:nth-child(6)::after {
  56.     content : "quarter hog distributed monthly in 6 lb pkgs, 1 whole chickens/month, 6 eggs/week";
  57.     position : relative;
  58.     padding-left : 74px;
  59.     color : black;
  60.     font-style : italic;
  61. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement