October 2017
Intermediate to advanced
522 pages
10h 9m
English
Here is the seaweed just above the footer on the movies page:

If we look at the CSS, all that's happening is that the footer has a repeating background image. The background is the seaweed, and we're getting it to repeat along the x axis:
footer { background: #fff url('../images/seaweed.jpg') repeat-x 0 0; padding: 142px 0; font-size: 14px; line-height: 1.7; }
So we need to have a retina-sized version of seaweed.jpg. I have that in my images folder, and I've named it seaweed@2x.jpg:

At the very bottom of ...
Read now
Unlock full access