I am having trouble with the “About me” section of my Portfolio. I can’t manage to keep what I’ve written separate from my profile picture…they are always “merging”. I have tried aligning the written part to the left or nesting it within a container class but none worked…I don’t know what to try anymore to fix it!
I am having a problem with PgOne section in the HTML code…I have tried posting it here but it got all messed up, if someone could teach me that I would appreciate it a lot!
Secondly, this content div has two children, both <div>, the first for the text and the second for the image. Even this two div’s are put side-by-side through flexbox.
<div class="slide" style="background-image: url('https://images.unsplash.com/photo-1446305341947-847fd13db6c4?dpr=1&auto=format&fit=crop&w=1500&h=1000&q=80&cs=tinysrgb&crop=')">
<div class="content">
<div>
<p>I'm a self taught programmer. My First contact with programming was with C in College. </p>
<p>I'm currently a Camper at FreeCodeCamp, hoping claim my Front End Development Certificate, despite of the challenges I may encounter along the way! </p>
</div>
<div>
<img src="https://scontent.fnat1-1.fna.fbcdn.net/v/t1.0-9/12049199_1260244147335134_1475145842420982875_n.jpg?oh=900be0e8b78c9b353ed19742d9b0fb87&oe=59068CBC" />
</div>
</div>
</div>
Your container <div> should wrap the row <div>. It worked for me when I did this as well as remove the wells. Also, your <h3>s need to be paragraphs (<p> tags), as <h1> through <h6> are used for headers.
If you didn’t manage to fix it, let me know and I’ll try to help further. Good luck.
I am not sure if it is that you needed but I hope it helps you somehow or give you new ideas to solve your problem…I think that if you want to put your description in a new box, but still side by side with your image, you would have to create a new div (or box) only for that and put your personal description inside it…
I am pretty new to this, but I hope it helps you…I’ve done my portfolio already (it still is pretty ugly though) and I had a tough time doing it lol…