my codepen project from freecodecamp
HTML code:
<div class="container container-fluid">
<div class="picture">
<img class="img-circle img-responsive" src="http://a5.files.biography.com/image/upload/c_fill,cs_srgb,dpr_1.0,g_face,h_300,q_80,w_300/MTE5NTU2MzE2NjUyOTk2MTA3.jpg" class="art">
</div>
<div id="flip">
<h3>Click to slide the panel right</h3>
</div>
<div class="title">
<p class="lead">I'm a <a class="link" target='_blank' href='http://www.freecodecamp.com/map'>self taught</a> web designer, developer, co-founder and entrepreneur based in Finland.
<br> I'm currently part of a small web development
<br> team in an upcoming start-up, building web and
<br> mobile applications.
<br>My passion is to use technology based
<br> solutions, to help solve real world challenges.
<br> Competences:
<br> Languages and Frameworks:
<br> Javascript, HTML5, CSS3, jQuery, Bootstrap3,
<br> Angular.js, Meteor.js.
<br> Tools & expertise:
<br> Git, Responsive Web Design, Agile
<br> Methodologies.</p>
</div>
</div>
CSS code:
#flip>h3{
border: 2px solid black;
display:inline;
}
#flip{
position:absolute;
transform:rotate(-90deg);
}
.title>p{
border:2px solid green;
background-color:#e5eecc;
}
Run codeThe problem occurs on the "about" page. What I want to do is take the switch panel, which says “click to move the panel to the right” and attach it to the right side of the image. However, the image is rounded, so I'm not sure if this is the best way to do this.
Please keep in mind that I am still new to this business.
Also in this note is the jquery event so that the contents of the contents of the toggle panel are hidden when the web page loads, am I correct?
thank