Guest User

Untitled

a guest
Nov 22nd, 2017
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. <div class="top">
  2. <div class="quote">blah</div>
  3. </div>
  4.  
  5. <div class="bottom">
  6. <form ...blah...</form>
  7. <div class="links-section">blah</div>
  8. </div>
  9.  
  10. .top { position: relative; background-image: url(blah); }
  11. .quote { position: absolute; top: blah; left: blah; etc. }
  12.  
  13. form { display: inline-block; width: blah; margin-top: some negative number; }
  14. .links-section { display: inline-block; }
  15.  
  16. <form ... blah>
  17. <div class="top">
  18. <div class="form-top">form fields that go in the top</div>
  19. <div class="quote">blah</div>
  20. </div>
  21.  
  22. <div class="bottom">
  23. <div class="form-bottom">
  24. form fields that go in the bottom
  25. includes "form section" and "form bottom" in the image attached
  26. </div>
  27. <div class="links-section">blah</div>
  28. </div>
  29. </form>
Add Comment
Please, Sign In to add comment