Advertisement
planthed

Popup Faq + Ask #3 Step 1

Apr 16th, 2016
1,441
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.21 KB | None | 0 0
  1. /*LAYOUT BY PAINTHEMES*/
  2.  
  3. #faq{
  4. color:{color:text};
  5. padding:15px;
  6. border:1px solid #ddd; /*border of your faq*/
  7. background:white; /*background of your faq*/
  8. width:440px;
  9. overflow:auto;
  10. font-size:10px;
  11. line-height:15px;
  12. height:130px;
  13. }
  14.  
  15. #faq h1{
  16. padding:5px;
  17. padding-left:10px;
  18. background:#ddd;
  19. color:#000; /*text color of the question box*/
  20. font-weight:normal;
  21. text-transform:uppercase;
  22. letter-spacing:2px;
  23. font-size:11px;
  24. margin-bottom:5px;
  25. }
  26.  
  27.  
  28. #faq:after {
  29. content: '';
  30. position: absolute;
  31. border-style: solid;
  32. border-width: 15px 15px 0px;
  33. border-color: #fff transparent; /*IMPORTANT!!! change the color of the triangle as the same color of you faq background, DON'T DELETE "TRANSPARENT"*/
  34. display: block;
  35. width: 0;
  36. opacity:1;
  37. z-index: 99999999999999;
  38. top:176px;
  39. left: 40px;
  40. }
  41.  
  42.  
  43. #faq:before {
  44. content: '';
  45. position: absolute;
  46. border-style: solid;
  47. border-width: 15px 15px 0px;
  48. border-color: #ddd transparent; /*chante the color of the border triangle as the same color of your border faq, DON'T DELETE TRANSPARENT*/
  49. display: block;
  50. width: 0;
  51. z-index: 3;
  52. top:177px;
  53. left: 40px;
  54. opacity:1;
  55. }
  56.  
  57. #ask{
  58. margin-top:25px;
  59. width:470px;
  60. height:190px;
  61. }
  62.  
  63. /*LAYOUT BY PAINTHEMES*/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement