Change font color.

This commit is contained in:
Aditi 2013-08-05 19:20:47 +05:30
parent 09d39fc17a
commit 4af4aec1bf
2 changed files with 5 additions and 4 deletions

View File

@ -307,6 +307,7 @@ text-align: center;
padding: 0px;
background-color: #86D4B1;
text-transform:capitalize;
text-decoration: none;
border-radius: 4px;
}
@ -317,7 +318,7 @@ text-align: center;
margin-right: auto;
background-color: #DDA0DD;
border-radius: 4px;
text-transform: capitalize;
}
.b_list_des {

View File

@ -23,11 +23,11 @@
{% trans %}{{ blog_owner }} 's Blog{% endtrans %} — {{ super() }}
{%- endblock %}
{% block mediagoblin_content %}
<div class="b_list_owner"> <h1> {{ blog_owner }} 's Blog </h1></div>
<div class="b_list_owner"> <h1><font color="black"> {{ blog_owner }} 's Blog</font></h1></div>
<div>
{% for post in blog_posts[0:9] %}
<div class="b_listing_title"><a href="{{ post.url_for_self(request.urlgen) }}"><h2>{{ post.title }}</h2></a></div>
<div class="b_list_des"> <p>{{ post.description|safe }} </p></div>
<div class="b_listing_title"><a href="{{ post.url_for_self(request.urlgen) }}"><h2><font color="black">{{ post.title }}</font></h2></a></div>
<div class="b_list_des"> <p>{{ post.description|safe }} </font></p></div>
{% endfor %}
</div>
{% endblock %}