Commit 2b831da926346b17c16e1cf1e068790791755bca

Authored by Matheus Figueiredo
1 parent 70e08214

Changing avatar from class to id

src/accounts/templates/accounts/user-profile.html
@@ -28,7 +28,7 @@ @@ -28,7 +28,7 @@
28 <h2>{{ email_address.get_full_name }}</h2> 28 <h2>{{ email_address.get_full_name }}</h2>
29 29
30 <div> 30 <div>
31 - <img class="avatar" width="120px" heigth="120px" 31 + <img id="avatar" width="120px" height="120px"
32 src="http://www.gravatar.com/avatar/{{ email_address.md5 }}?s=120&d=identicon" /> 32 src="http://www.gravatar.com/avatar/{{ email_address.md5 }}?s=120&d=identicon" />
33 </div> 33 </div>
34 34