Put the profile stuff in p's instead of <ul>'s
authorChristopher Allan Webber <cwebber@dustycloud.org>
Mon, 4 Jul 2011 14:11:13 +0000 (09:11 -0500)
committerChristopher Allan Webber <cwebber@dustycloud.org>
Mon, 4 Jul 2011 14:11:13 +0000 (09:11 -0500)
mediagoblin/static/css/base.css
mediagoblin/templates/mediagoblin/utils/profile.html

index 5073c3b46827a0fabbe52f1a24b0baf81b063189..da04e1c4e37d14978d085cf86ed4b3d14a8df164 100644 (file)
@@ -257,3 +257,10 @@ ul.mediagoblin_messages {
   background-color: #f7f7f7;
   color:#272727;
 }
+
+/* profile stuff */
+
+.profile_content p, .profile_bio {
+  padding: 6px;
+  background-color: #393939;
+}
index 2146803321ba4749bf10e6c1858a3c46ef64aa13..72a285d2c36a9105bfab5d36399aa1fbd3e41298 100644 (file)
 #}
 
 {% block profile_content -%}
-  <div>
-    <ul>
-      {% if user.url %}
-        <li>
-          <a href="{{ user.url }}">homepage</a>
-        </li>
-      {% endif %}
-      
-      {% if user.bio %}
-        <li>
-          {{ user.bio }}
-        </li>
-      {% endif %}
-    </ul>
+  <div class="profile_content">
+    {% if user.url %}
+      <p class="profile_homepage">
+        <a href="{{ user.url }}">homepage</a>
+      </p>
+    {% endif %}
+    
+    {% if user.bio %}
+      <p class="profile_bio">
+        {{ user.bio }}
+      </p>
+    {% endif %}
   </div>
 {% endblock %}