Title: croborn's Replies | WordPress.org

---

# croborn

  [  ](https://wordpress.org/support/users/croborn/)

 *   [Profile](https://wordpress.org/support/users/croborn/)
 *   [Topics Started](https://wordpress.org/support/users/croborn/topics/)
 *   [Replies Created](https://wordpress.org/support/users/croborn/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/croborn/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/croborn/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/croborn/engagements/)
 *   [Favorites](https://wordpress.org/support/users/croborn/favorites/)

 Search replies:

## Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Multiple image backgrounds in the same div?](https://wordpress.org/support/topic/multiple-image-backgrounds-in-the-same-div/)
 *  [croborn](https://wordpress.org/support/users/croborn/)
 * (@croborn)
 * [16 years, 4 months ago](https://wordpress.org/support/topic/multiple-image-backgrounds-in-the-same-div/#post-1378777)
 * It does not work in IE8 🙁
 * It requires CSS3 xD
 * So only new browsers 🙁
 * UPDATE:
    Looks i should check [this](http://www.findmebyip.com/litmus) site for
   maximum support with Multiple Backgrounds.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Multiple image backgrounds in the same div?](https://wordpress.org/support/topic/multiple-image-backgrounds-in-the-same-div/)
 *  [croborn](https://wordpress.org/support/users/croborn/)
 * (@croborn)
 * [16 years, 4 months ago](https://wordpress.org/support/topic/multiple-image-backgrounds-in-the-same-div/#post-1378775)
 * Works fine in Firefox 3.6, Google Chrome 5.0.317.2 and Opera 10.5
 * What browser are u using?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Multiple image backgrounds in the same div?](https://wordpress.org/support/topic/multiple-image-backgrounds-in-the-same-div/)
 *  [croborn](https://wordpress.org/support/users/croborn/)
 * (@croborn)
 * [16 years, 4 months ago](https://wordpress.org/support/topic/multiple-image-backgrounds-in-the-same-div/#post-1378769)
 * U can have as many bg images as u want in same div
 * [ here is example](http://choosenelite.co.cc/)
 * It uses 3 images: left soldier, right soldier, and background image that has 
   repeat-x.
 * This is the code:
 *     ```
       body {
   
       font-size:62.5%;
   
       font-family:"Lucida Grande","Lucida Sans Unicode",Calibri,Arial,Helvetica,Sans,FreeSans,Jamrul,Garuda,Kalimati;
   
       background-image: url(images/bg_left.jpg), url(images/bg_right.jpg),  url(images/bg_repeat.jpg);
   
       background-repeat: no-repeat, no-repeat, repeat-x;
   
       background-position: top left, top right, top left;
   
       background-color:#000;
   
       color:#fff;
   
       text-align:center;
   
       margin:0;
   
       padding:0;
   
       }
       ```
   
 * Note: browser renders images from the last (so repeat-x image goes at the end
   to render first or else it would cover other images)

Viewing 3 replies - 1 through 3 (of 3 total)