Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Aug 30th, 2012  |  syntax: CSS  |  size: 0.77 KB  |  hits: 41  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. /*This stuff adds an 'announcement' to the top of the subreddit the text of the announcement will be in h3/### text in the reddit description  */
  2.  
  3. body {
  4.     position: relative
  5.     }
  6. .content {
  7.     margin-top: 45px
  8.     }
  9. .pagename {
  10.     font-size: 14pt
  11.     }
  12. .titlebox form {
  13.     position: static
  14.     }
  15. .titlebox .usertext-body .md  h3 {
  16.     width: 64%;
  17.     background-position: 4px 4px;
  18.     background-repeat: no-repeat;
  19.     background-color: #F2F2F2;
  20.     border: 1px solid #F2F2F2;
  21.     position: absolute;
  22.     top: 80px;
  23.     left: 20px;
  24.     z-index: 50;
  25.     margin: 0;
  26.     padding: 4px;
  27.     padding-left: 30px;
  28.     text-align: left;
  29.     -moz-border-radius: 6px;
  30.     -webkit-border-radius: 6px;
  31.     color: gray;
  32.     }
  33. /* the end of the announcement h3 code*/