2
I’m having a problem with a website I can’t fix. I’m trying to make an information card without using a Bootstrap card because I want the image to be on the left side so I decided to do something similar but only with Rows and columns and it was like this:
However, I’m not getting the example name under Heading Name.
<div class="row padInternalRow">
<div class="col-5 border">
<img class="img-fluid float-left" src="imagens\user.png" height="175" alt="Card image cap">
</div>
<div class="col-7 w-50">
<div class="row border h-50">
<h5 class="text-left">Nome</h5>
<p class="text-left"><br />Nome exemplo</p>
</div>
<div class="row border h-50">
<p class="text-center">Funcao</p>
<p class="text-center"><br />Funcao exemplo</p>
</div>
</div>
</div>
Thank you so much! I’m still learning and I’m very beginner so sometimes I have these unnecessary things in the code but thank you.
– Afonso
@Legal Afonso that solved there, continue with the studies :)
– hugocsl