I'm working with Bootstrap, but I'm struggling to achieve the desired layout.
My goal is to have the design adapt like this on different screen sizes:
----------------------
Headline | |
| image |
----------| |
Bullet | |
list | |
----------|----------|
For example, on a small screen, it should look like this:
----------|
Headline |
|
----------|
|
image |
|
|
|
----------|
bullet |
list |
|
Currently, only one of these layouts works. When the small screen layout is correct, the large screen layout appears like this:
----------|----------|
Headline | |
| image |
| |
| |
| |
----------|----------|
Bullet |
list |
|
|
The issue is that the bullet list doesn't align under the headline as intended. It always appears after the image height.
You can view the code examples here: http://jsfiddle.net/Jw4s9/1
Would using something like be a better solution in this case?