html - Add an image on top of a header image (Wordpress) -
i'm using wordpress theme "illdy" (https://colorlib.com/illdy/)
i add image on top of "jumbotron" header image. image should in center of jumbotron header, responsive.
if give me advice on how this, appreciate it!
thank you!
an example:
you this, , of course need change top , left right positioning want.
.images { position: relative; top: 0; } .image_1 { position: relative; top: 0; left: 0; } .image_2 { position: absolute; top: 150px; left: 200px; text-align: center; }
<div class="images"> <img class="image_1" src="http://placehold.it/1500x600/ff0000/" alt=""> <img class="image_2" src="http://placehold.it/700x300/000000/" alt=""> </div>
Comments
Post a Comment