I am working on a page that has 4 sections that are made up of rows divided into 1/3 + 2/3. I am having two problems with this page: http://leadershipforchange.longandshortcreative.com/training/
-
The image is responsive as the page width shrinks, but when the columns stack, the image stays tiny, rather than sizing back up.
-
I want to change the breakpoint to 1000px. I have tried adding this code to the page’s CSS, but it is having no effect:
@media (max-width: 768px){
.x-column.x-sm.x-1-3 {
width: 100%;
}
}
What can I do to fix this?