Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialBrice Franks
1,488 PointsDoes anybody know what element to use?
I'm trying to create my text to flow down the page instead of across the page underneath my image. What elements should i use so my text flows down the page instead of across the page. I tried to use the <p> tag but it wouldn't work. Here is my code below. You can also go to bricefranks.com and click "About" page to see what I'm trying to do. Thanks!
<div class="profile-photo"> <img src= "img/bricebf.jpg" alt= "photograph of Brice Franks" style= "float: left"> <div class= "img"><em>Life Coach</em></div> <div class= "img"><em>Project Coordination</em></div> <div class= "img"><em>Quality Assurance</em></div> </div>
1 Answer
Tim Acker
Front End Web Development Techdegree Graduate 31,247 PointsThe simplest thing you can do at this stage is increase the bottom margin on .profile-photo. Change it to 100px for instance. In later lessons, you'll see better ways to handle this.