Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author Caroline Moore

    (@sixhours)

    You can use CSS to tailor your content to specific device widths using media queries:

    @media screen and ( max-width: 400px ) {
      #masthead {
          background-image: url(path/to/image.png);
      }
      /* The rest of your CSS for screens with a max width of 400 pixels goes here. */
    }

    There’s more in-depth info at the link above, but that gives you the basic idea.

    Thread Starter ceciRjas

    (@cecirjas)

    great thank you !

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘images version for mobile ?’ is closed to new replies.