Your "About" Page seems to break -
To fix the stray bullet (see bullet for the "Reframing" point) -
Find
and change it
--- To fix the mis-alignments of the div, open your styles.css
Find
And change to
It should now look like this -
*Flies Away*

To fix the stray bullet (see bullet for the "Reframing" point) -
Find
HTML:
<ul>
<li>Reframing</li>
<li>Story Telling</li>
<li>Subversive Marketing</li>
<li>Organic SEO</li>
<li>Compelling Content</li>
</ul>
and change it
HTML:
<ul style="clear: left;">
<li>Reframing</li>
<li>Story Telling</li>
<li>Subversive Marketing</li>
<li>Organic SEO</li>
<li>Compelling Content</li>
</ul>
--- To fix the mis-alignments of the div, open your styles.css
Find
Code:
.benefitsbox {
background-image: url('images/box.png');
background-repeat: no-repeat;
width: 300px;
height: 350px;
float: right;
padding-left: 40px;
padding-right:40px;
}
And change to
Code:
.benefitsbox {
background-image: url('images/box.png');
background-repeat: no-repeat;
width: 300px;
height: 350px;
float: right;
padding-left: 20px;
padding-right:20px;
}
It should now look like this -

*Flies Away*