Check out my website:
Here's a snapshot of the problem:
I've been struggling to make my image responsive and prevent it from shrinking on IE 8. The webpage functions well on most modern browsers except for IE 8. I want it to display properly across all browsers.
All my code is stored in external style sheets (you can view the source by right-clicking):
<div id ="about_center">
<div id="dp_section">
<img src="images/Business%20Picture.jpg" id="dp" alt="Leonard Pfautsch"/>
</div>
</div>
<div id = "new_line_about">
<div id='about_section'>
<p>
My name is Leonard Pfautsch.
</p>
<br/>
<p>
Currently I am an student at Marist College in Poughkeepsie, NY. My area of study is Information Technology, but I am still
very interested in the Computer Science field as well. At school and at home, I am always studying and learning new things.
</p>
<br/>
<p>
In my studies, I have really gained a fascination for all aspects of technology. This includes:
web development, internetworking, system administration, information security, data management, computer architecture,
cloud computing, gaming, and mobile application development.
</p>
<br/>
<p>
In all aspects of work, I always strive for perfection. Whenever I work, I make sure the job is done correctly and efficiently.
I always do my best with any challenge I am faced with. In terms of client satisfaction, I will go above and beyond to give
people the best experience possible.
</p>
</div>
</div>
</section>
/* ABOUT */
#dp_section {
float:left;
}
#dp {
border:10px solid #161616;
width:200px;
max-width:100%;
border-radius:10px;
box-shadow:0px 0px 15px #272727;
margin-bottom:10px;
background-color:black;
margin-right:10px;
margin-left:-10px;
}
#about_section {
width:100%;
max-width:100%;
margin:0px;
}
section{
width:100%;
}
#about_center{
width:200px;
height:auto;
margin:0 auto;
max-width:100%;
}
I've tried every solution I know of to address this issue, but I'm stuck. I even attempted using responsive.min.js which helped resolve some problems, but not this particular one. Any assistance would be greatly appreciated.