CCC&D

Center for Craft, Creativity & Design

From the to-do list: DEV

✔ BODY - 404 /missing content image

Comments

Justin Bernard on October 7, 2015:

do you have psd for this?

i need a 'need content' image that i use temp for pages we dont have conent for, so client can see missing places and not think we just havent done it yet

Justin Bernard on October 7, 2015:


can use same img, just need it to say 'Content missing.'  do one for mobile/non mobile if you can, like you did for 404.  i can do css, just need the 2 images.

#error_landing a {
  display: block;
  position: relative;
  width: 320px;
  height: 590px;
  left: 0;
  bottom: 0;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  text-indent: -9999px;
  background: url('./img/404_mobile.jpg') no-repeat 0 0;
}

@media only screen and (min-width: 750px) {

    #error_landing a {
      width: 700px;
      height: 300px;
      background: url('./img/404_large.jpg') no-repeat 0 0;
    }

}

Taylor Bernard on October 7, 2015: