Skip to content

Commit

Permalink
Merge pull request #56 from rogerskw/iss52
Browse files Browse the repository at this point in the history
Issue #52: Limit image size on brother profile page
  • Loading branch information
kylerog committed Mar 9, 2014
2 parents 510c52a + a3396fc commit c54a461
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion info/templates/brother_profile.html
Expand Up @@ -16,7 +16,7 @@ <h1 class="page-header"> {{ be.brother.firstName }} {{ be.brother.lastName }} <s
<div class="row">

<div class="col-md-8" style="max-width:750px; max-height:500px;">
<img class="img-responsive" src="{{ be.brother.picture }}" style="margin-left:auto; margin-right:auto;">
<img class="img-responsive" src="{{ be.brother.picture }}" style="margin-left:auto; margin-right:auto; max-width: 100%; max-height: 100%;">
</div>

<div class="col-md-4">
Expand Down

0 comments on commit c54a461

Please sign in to comment.