October 2017
Intermediate to advanced
522 pages
10h 9m
English
To constrain the size of images, we need to set a width and/or a max-width. We actually already did this but only inside of a media query so it isn't firing on larger screens:
@media screen and (max-width: 1023px){ .intro-content { width: auto; float: none; padding-bottom: 0; margin-bottom: 30px; } .go-premium { width: auto; float: none; margin-top: 0; } .column { float: none; width: auto; padding: 0 50px; } .column figure { margin: 0 auto; width: 100%; max-width: 250px; } .column h2 { text-align: center; }}/* end of media query */
Let's remove that rule set from the media query and add it up where we originally defined the 3 columns outside of our responsive media queries:
**************** ...
Read now
Unlock full access