Advertisement
alchymyth

Untitled

Oct 24th, 2011
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.82 KB | None | 0 0
  1. /*
  2. Theme Name:     Site Without Blue
  3. Description:    Will have a sticky post w/o having light blue color.
  4. Author:         admin
  5. Template:       twentyten
  6.  
  7.  
  8. .home .sticky {
  9.     background:#fff;
  10. }
  11.  
  12. .sticky {
  13.     font-style: normal;
  14. }
  15.  
  16. (optional values you can add: Theme URI, Author URI, Version)
  17. */
  18.  
  19.  
  20. @import url("../twentyten/style.css");
  21.  
  22. .home .sticky {
  23.     background:#fff;
  24. }
  25.  
  26. should be:
  27.  
  28. /*
  29. Theme Name:     Site Without Blue
  30. Description:    Will have a sticky post w/o having light blue color.
  31. Author:         admin
  32. Template:       twentyten
  33.  
  34. (optional values you can add: Theme URI, Author URI, Version)
  35. */
  36.  
  37.  
  38. @import url("../twentyten/style.css");
  39.  
  40. .home .sticky {
  41.     background:#fff;
  42. }
  43. .sticky {
  44.     font-style: normal!important;
  45.     font-size: 1em!important;
  46.     color: #000!important;
  47. }
  48.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement