**Warning: Fairly NSFW link** provided for examples. Apologies in advance. This is a little embarrassing but the client wants this layout.
I need help with 2 things here.
Question #1: The “Bio” text right below the first picture. How do I create that with the horizontal lines on each side?
Question #2: The “Quick Facts” section at the bottom. That layout. I have it recreated, except for the fact that I cannot get the second column of text. How would I align it? I can’t simply hit the space bar 30 times because the alignment would be wrong. There must be an easier way.
Thanks in advance.
Hey schizm00,
Thank you for your patience, for the first example I used a code block element:
the css is
.bio-title::before {
content: "";
width: 200px;
height: 1px;
background-color: #aaa;
margin-right: 20px;
box-sizing: border-box;
}
.bio-title::after {
content: "";
width: 200px;
height: 1px;
background-color: #aaa;
margin-left: 20px;
box-sizing: border-box;
}
.bio-title {
font-size: 64px;
text-align: center;
color: #000;
position: relative;
display: flex;
justify-content: center;
align-items: center;
}
and the html structure is:
<h1 class="bio-title"><span>Bio</span></h1>
you could use a text element if you wish.
The result is:
For the second example I again used a code block element, inside a grid row element:
this is the code inside the code block:
<table>
<tbody><tr>
<td>Height</td>
<td>5’11</td>
</tr>
<tr>
<td>Nationality</td>
<td>American</td>
</tr>
<tr>
<td>Age</td>
<td>25</td>
</tr>
<tr>
<td>Bust</td>
<td>Natural</td>
</tr>
<tr>
<td>Shoe</td>
<td>10</td>
</tr>
<tr>
<td>Eyes</td>
<td>Blue</td>
</tr>
<tr>
<td>Hosting</td>
<td>Incall/Outcall</td>
</tr>
</tbody></table>
this is the result:
Please give this a try 🙂
Best regards,
Mike