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

Untitled

By: a guest on Jun 21st, 2012  |  syntax: None  |  size: 0.48 KB  |  hits: 11  |  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. modify color of the Chinese part of a Drupal website
  2. <body class="front not-logged-in one-sidebar sidebar-left i18n-zh-hans">
  3.        
  4. <body class="front not-logged-in one-sidebar sidebar-left i18n-en">
  5.        
  6. body
  7.   {
  8.     background-color:#f4f4f4;
  9.     background-image:url(images/margins.jpg);
  10.     background-position:center;
  11.     background-repeat:repeat-y;
  12.     margin: 0;
  13.     padding: 10px;
  14.     width: auto !important;
  15.   }
  16.        
  17. body .i18n-zh-hans
  18.  {
  19.     color: red;
  20.   }
  21.        
  22. body.i18n-zh-hans