Hi, here is the code. The problem i am having is with the blogpost and imagewtext divs: it’s just not responsive and doesn’t stay in place
<div class="row text-center">
<div class="imageWtext">
<img class="fullWidthImage" src="http://placehold.it/400x400" alt="">
<h1>We are here to make it easy for you</h1>
</div>
</div>
</div>
The code that you’ve posted does not allow me to emulate the issue. It would be better if you could post a link to the site of a “working page” that includes enough relevant code to actually demonstrate the issue (then we can see what you see) and with a more complete description, perhaps tell what you expect to see).
It’s difficult to help without knowing exactly how you intend this layout to work for different sizes.
But as a general rule of thumb, it is best to avoid absolute positioning as much as possible in RWD because it will cause problems.
It’s far better to keep as much as possible in the natural document flow, to keep things fluid. Avoid magic numbers, fixed heights and widths. Such rigid rules will make the layout brittle and it will be prone to breaking when anything moves.
The problem is, too much is absolute, your containers are absolute and use px positioning (magic numbers). If you must use absolute, keep it to a minimum and avoid magic numbers.
It may be that background images could work in this case.