2
I have a banner registration that will have fixed sizes, so I want to add a qrcode that will be generated by the system in this image, along with the user photo. I have this situation :
#carimbo-foto{
position:absolute;
z-index:0
}
#banner{
position: relative;
left: 0%;
top: 0%;
}
#carimbo {
position: absolute;
left: 50%;
top: 38%;
margin-left:-64px;
margin-top:-73px;
z-index:1
}
#qrcode{
position: absolute;
left: 51%;
top: 78%;
margin-left:-64px;
margin-top:-73px;
z-index:1
}
Html:
<div class="carimbo-foto">
<img src="/Content/imagens/user8-128x128.jpg" class="img-responsive" id="carimbo" alt="" width="90" height="98">
<img src="/Content/imagembanner/banner_novo.png" class="img-responsive" id="banner" alt="" width="560" height="315">
<img src="/Content/qrcode/1.png" class="img-responsive" id="qrcode" alt="" width="80" height="80">
</div>
Current result:
I gave a breeze in the first answer because I was doing it in the fiddle, and the resized screen is small in a right vi with going to be in the normal screen... But I think that’s it... I hope it helps...
– MagicHat