Tag: Wordpress

  • Make a background image stretch or adjust with CSS (Works w/ WordPress)

    Stretching a background image with CSS      This simple snippet of CSS will stretch or shrink a background image based on the resolution of the browser. Add the following CSS to your stylesheet(for WordPress add this under your themes stylesheet): body {      background: url(images/bg.jpg) no-repeat center center fixed;      -webkit-background-size: cover;      -moz-background-size: cover;      -o-background-size: cover;      background-size: cover;…

  • Quick Fix – WordPress 3.5 No Thumbnails?

    The Issue      So I just recently noticed after upgrading to WordPress 3.5.1 and updating my servers PHP install that it seemed the process of creating thumbnails had broken. I was trying to create a gallery and getting full size images filling my content boxes. Checking the uploads folder showed there was no thumbnail output at…