Advertisement
Guest User

Untitled

a guest
Jul 27th, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. jobAlert.css, line 20:
  2. #jobAlertMain span.bottomLeft {
  3. bottom: 8px;
  4. left: -1.08em; /* change from 1.06em to realign the bottom left rounded corner */
  5. }
  6.  
  7.  
  8. jobAlert.css, line 163
  9.  
  10. #jobAlertMain input.submit {
  11. border: 1px solid #6F1200;
  12. bottom: 0;
  13. display: block;
  14. font-weight: bold;
  15. /* margin-bottom: 0.7em;
  16. margin-right: 0.1em; Commented, button is way out of place */
  17. position: absolute;
  18. right: 0;
  19. text-align: center;
  20. width: 6em;
  21. }
  22.  
  23.  
  24. jobAlert.css, line 187
  25.  
  26. div.inputContain {
  27. display: block;
  28. height: 3em;
  29. /* margin: 0 1em 0 0; Commented, button is out of place */
  30. padding: 0;
  31. position: relative; /* added, input is position: absolute, container needs to be position: relative */
  32. top: 1px; /* added, move button to cover bottom right rounded corner image */
  33. left: 1px; /* added, move button to cover bottom right rounded corner image */
  34. z-index: 20; /* added, move button to cover bottom right rounded corner image */
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement