Welcome! To use this support forum, please Login or Join Today!
You are here → Home :: Forum Home :: WordPress Themes Support :: Breeze WordPress Theme :: Thread
Missing image
page image in breeze…“page_bg.png” shows up in large monitor by doesn’t show up in ipad or mobile device .... take a look at http://www.onthe-shelf.com. This image is essential to showing my menu bar.
The background image is hidden because at that point, the container is the only visible element on tablet/mobile. This helps the page load faster by reducing unnecessary image/css requests. If you’re modifying the design, you’ll want to edit the mobile media queries in style1.css, specifically this rule:
/* Smaller than standard 960 (devices and browsers) */
@media only screen and (max-width: 959px) {
body.framed,
body.offset {
background: white none;
}
...
}