Browse Source

Fixing heading structure on various pages on the public side of the site, relating to issue #1425

master
andysellick 11 years ago
parent
commit
aea2758eeb

+ 11
- 0
oscar/static/oscar/css/styles.css View File

@@ -7497,6 +7497,11 @@ body {
7497 7497
   margin: 0px auto;
7498 7498
   max-width: 960px;
7499 7499
 }
7500
+.row-fluid {
7501
+  -webkit-box-sizing: border-box;
7502
+  -moz-box-sizing: border-box;
7503
+  box-sizing: border-box;
7504
+}
7500 7505
 .page {
7501 7506
   background: #ffffff;
7502 7507
   -webkit-border-radius: 0 0 6px 6px;
@@ -7564,21 +7569,25 @@ h1,
7564 7569
 .h1 {
7565 7570
   font-size: 30.099999999999998px;
7566 7571
   line-height: 40px;
7572
+  font-weight: bold;
7567 7573
 }
7568 7574
 h2,
7569 7575
 .h2 {
7570 7576
   font-size: 24.5px;
7571 7577
   line-height: 40px;
7578
+  font-weight: bold;
7572 7579
 }
7573 7580
 h3,
7574 7581
 .h3 {
7575 7582
   font-size: 17.5px;
7576 7583
   line-height: 24px;
7584
+  font-weight: bold;
7577 7585
 }
7578 7586
 h4,
7579 7587
 .h4 {
7580 7588
   font-size: 16.099999999999998px;
7581 7589
   line-height: 24px;
7590
+  font-weight: bold;
7582 7591
 }
7583 7592
 h5,
7584 7593
 .h5 {
@@ -7751,6 +7760,7 @@ ul.row-fluid {
7751 7760
 .product_pod .price_color {
7752 7761
   font-size: 16.099999999999998px;
7753 7762
   line-height: 24px;
7763
+  font-weight: bold;
7754 7764
 }
7755 7765
 .product_pod .availability,
7756 7766
 .product_pod .price_color {
@@ -7930,6 +7940,7 @@ a:hover .thumbnail {
7930 7940
 .sidebar .promotion_single h2 {
7931 7941
   font-size: 17.5px;
7932 7942
   line-height: 24px;
7943
+  font-weight: bold;
7933 7944
 }
7934 7945
 .sidebar .promotion_single h3 {
7935 7946
   font-size: 14px;

+ 3
- 0
oscar/static/oscar/less/page/layout.less View File

@@ -10,6 +10,9 @@ body {
10 10
     // Here is the page width: editable in page/mixins.less
11 11
     max-width:@oscarpagewidth;
12 12
 }
13
+.row-fluid {
14
+    .box-sizing(border-box);
15
+}
13 16
 
14 17
 // The page container
15 18
 .page {

+ 14
- 12
oscar/templates/oscar/basket/partials/basket_content.html View File

@@ -25,10 +25,10 @@
25 25
     {% block basket_form_headers %}
26 26
         <div class="basket-title hidden-phone">
27 27
             <div class="row-fluid">
28
-                <h4 class="span6">{% trans "Items to buy now" %}</h4>
29
-                <h4 class="span3">{% trans "Quantity" %}</h4>
30
-                <h4 class="span1 align-right">{% trans "Price" %}</h4>
31
-                <h4 class="span2 align-right">{% trans "Total" %}</h4>
28
+                <h2 class="span6 h3">{% trans "Items to buy now" %}</h2>
29
+                <p class="span3 h3">{% trans "Quantity" %}</p>
30
+                <p class="span1 h3 align-right">{% trans "Price" %}</p>
31
+                <p class="span2 h3 align-right">{% trans "Total" %}</p>
32 32
             </div>
33 33
         </div>
34 34
     {% endblock %}
@@ -54,13 +54,15 @@
54 54
                                 {% endwith %}
55 55
                             </div>
56 56
                             <div class="span4">
57
-                                <h4><a href="{{ product.get_absolute_url }}">{{ line.description }}</a></h4>
57
+                                <h3><a href="{{ product.get_absolute_url }}">{{ line.description }}</a></h3>
58 58
                                 <p class="availability {{ session.availability.code }}">{{ session.availability.message }}</p>
59 59
                             </div>
60 60
                             <div class="span3">
61 61
                                 <div class="checkout-quantity control-group {% if form.errors %}error{% endif %}">
62
-                                    {{ form.quantity }}
63
-                                    <button class="btn" type="submit">{% trans "Update" %}</button>
62
+                                    <p>
63
+                                        {{ form.quantity }}
64
+                                        <button class="btn" type="submit">{% trans "Update" %}</button>
65
+                                    </p>
64 66
                                     <p>
65 67
                                         <a href="#" data-id="{{ forloop.counter0 }}" data-behaviours="remove" class="inline">{% trans "Remove" %}</a>
66 68
                                         {% if request.user.is_authenticated %}
@@ -113,7 +115,7 @@
113 115
                 <p id="voucher_form_link"><a href="#voucher" class="btn btn-full">{% trans "I have a voucher code..." %}</a></p>
114 116
 
115 117
                 <div id="voucher_form_container" style="display:none">
116
-                    <h4>{% trans "Voucher code" %}</h4>
118
+                    <h3>{% trans "Voucher code" %}</h3>
117 119
                     <form id="voucher_form" action="{% url 'basket:vouchers-add' %}" method="post">
118 120
                         {% csrf_token %}
119 121
                         {% include "partials/form_fields.html" with form=voucher_form %}
@@ -158,11 +160,11 @@
158 160
     {% if request.user.is_authenticated and saved_formset %}
159 161
         <div class="well">
160 162
             <div class="sub-header">
161
-                <h3>{% trans "To buy later" %}</h3>
163
+                <h2>{% trans "Items to buy later" %}</h2>
162 164
             </div>
163 165
             <div class="row-fluid basket-title hidden-phone">
164
-                <h4 class="span8">{% trans "Items" %}</h4>
165
-                <h4 class="span2 align-center">{% trans "Price" %}</h4>
166
+                <p class="span8 h4">{% trans "Items" %}</p>
167
+                <p class="span2 h4 align-center">{% trans "Price" %}</p>
166 168
                 <div class="span2">&nbsp;</div>
167 169
             </div>
168 170
             <form action="{% url 'basket:saved' %}" method="post" class="form-stacked later_summary" id="saved_basket_formset">
@@ -183,7 +185,7 @@
183 185
                                 {% endwith %}
184 186
                             </div>
185 187
                             <div class="span6">
186
-                                <h4><a href="{{ form.instance.product.get_absolute_url }}">{{ form.instance.description }}</a></h4>
188
+                                <h3><a href="{{ form.instance.product.get_absolute_url }}">{{ form.instance.description }}</a></h3>
187 189
                                 <p class="availability {{ session.availability.code }}">{{ session.availability.message }}</p>
188 190
                                 <a href="#" data-id="{{ forloop.counter0 }}" data-behaviours="remove">{% trans "Remove" %}</a>
189 191
                                 <div style="display:none">

+ 3
- 3
oscar/templates/oscar/basket/partials/basket_quick.html View File

@@ -20,7 +20,7 @@
20 20
                         </div>
21 21
                     </div>
22 22
                     <div class="span6">
23
-                        <h5><a href="{{ line.product.get_absolute_url }}">{{ line.description }}</a></h5>
23
+                        <p><strong><a href="{{ line.product.get_absolute_url }}">{{ line.description }}</a></strong></p>
24 24
                     </div>
25 25
                     <div class="span1 align-center"><strong>{% trans "Qty" %}</strong> {{ line.quantity }}</div>
26 26
                     <div class="span2 price_color align-right">{{ line.unit_price_excl_tax|currency:request.basket.currency }}</div>
@@ -28,13 +28,13 @@
28 28
             </li>
29 29
         {% endfor %}
30 30
         <li class="form-actions">
31
-            <h4 class="align-right">
31
+            <p class="align-right">
32 32
                 {% if request.basket.is_tax_known %}
33 33
                     <small>{% trans "Total:" %} {{ request.basket.total_incl_tax|currency:request.basket.currency }}</small> 
34 34
                 {% else %}
35 35
                     <small>{% trans "Total:" %} {{ request.basket.total_excl_tax|currency:request.basket.currency }}</small> 
36 36
                 {% endif %}
37
-            </h4>
37
+            </p>
38 38
             <p class="pull-left"><a href="{% url 'basket:summary' %}" class="btn btn-info btn-small">{% trans "View basket" %}</a></p>
39 39
             <p class="pull-right"><a href="{% url 'checkout:index' %}" class="btn btn-primary btn-small"><i class="icon-shopping-cart"></i> {% trans "Checkout" %}</a></p>
40 40
         </li>

+ 8
- 8
oscar/templates/oscar/basket/partials/basket_totals.html View File

@@ -6,7 +6,7 @@
6 6
     <table class="table table-condensed">
7 7
         <tbody>
8 8
             <tr>
9
-                <th colspan="2"><h4>{% trans "Basket" %}</h4></th>
9
+                <th colspan="2"><h3>{% trans "Basket" %}</h3></th>
10 10
             </tr>
11 11
             {% with offer_discounts=basket.offer_discounts voucher_discounts=basket.grouped_voucher_discounts %}
12 12
                 {% block discount_totals %}
@@ -36,7 +36,7 @@
36 36
 
37 37
                         {% if voucher_discounts %}
38 38
                             <tr>
39
-                                <th colspan="2"><h4>{% trans "Vouchers" %}</h4></th>
39
+                                <th colspan="2"><h3>{% trans "Vouchers" %}</h3></th>
40 40
                             </tr>
41 41
                             {% for discount in voucher_discounts %}
42 42
                                 <tr>
@@ -92,7 +92,7 @@
92 92
 
93 93
                 <tr>
94 94
                     <th colspan="2">
95
-                        <h4>{% trans "Shipping" %}</h4>
95
+                        <h3>{% trans "Shipping" %}</h3>
96 96
                         {% if shipping_methods|length > 1 and editable %}
97 97
                             <small>{% trans "Alternative shipping methods can be chosen during checkout" %}</small>
98 98
                         {% endif %}
@@ -157,7 +157,7 @@
157 157
                     </tr>
158 158
                     <tr>
159 159
                         <th colspan="2">
160
-                            <h4>{% trans "Tax" %}</h4>
160
+                            <h3>{% trans "Tax" %}</h3>
161 161
                         </th>
162 162
                     </tr>
163 163
                     <tr>
@@ -182,7 +182,7 @@
182 182
                         <td></td>
183 183
                     </tr>
184 184
                     <tr>
185
-                        <th><h4>{% trans "Post order actions" %}</h4><small>{% trans "These will be applied once your order is placed." %}</small></th>
185
+                        <th><h3>{% trans "Post order actions" %}</h3><small>{% trans "These will be applied once your order is placed." %}</small></th>
186 186
                         <td></td>
187 187
                     </tr>
188 188
                     {% for discount in basket.post_order_actions %}
@@ -202,15 +202,15 @@
202 202
                     <td></td>
203 203
                 </tr>
204 204
                 <tr>
205
-                    <th class="total"><h4>{% trans "Order total" %}</h4></th>
205
+                    <th class="total"><h3>{% trans "Order total" %}</h3></th>
206 206
                     <td class="total align-right">
207
-                        <h4 class="price_color">
207
+                        <h3 class="price_color">
208 208
                             {% if order_total.is_tax_known %}
209 209
                                 {{ order_total.incl_tax|currency:basket.currency }}
210 210
                             {% else %}
211 211
                                 {{ order_total.excl_tax|currency:basket.currency }}
212 212
                             {% endif %}
213
-                        </h4>
213
+                        </h3>
214 214
                     </td>
215 215
                 </tr>
216 216
                 {% if not order_total.is_tax_known %}

+ 5
- 4
oscar/templates/oscar/catalogue/detail.html View File

@@ -61,7 +61,7 @@
61 61
 
62 62
         {% block product_main %}
63 63
         <div class="span6">
64
-            {% comment %} 
64
+            {% comment %}
65 65
             This is a but clunky here.  Better to have some kind of JS-driven dashboard menu that 
66 66
             pops out when clicked.  A bit like the Django-Debug-Toolbar button
67 67
             {% endcomment %}
@@ -76,7 +76,7 @@
76 76
 
77 77
             {% iffeature "reviews" %}
78 78
                 {% if product.rating != None %}
79
-                    <h4 class="star-rating {{ product.rating|as_stars }}">
79
+                    <p class="star-rating {{ product.rating|as_stars }}">
80 80
                         <i class="icon-star"></i>
81 81
                         <i class="icon-star"></i>
82 82
                         <i class="icon-star"></i>
@@ -92,14 +92,15 @@
92 92
                         </a></small>
93 93
                         &nbsp;
94 94
                 {% else %}
95
-                    <h3>
95
+                    <p>
96 96
                 {% endif %}
97
+
97 98
                 {% if product|is_review_permitted:user %}
98 99
                     <a id="write_review" href="{% url 'catalogue:reviews-add' product_slug=product.slug product_pk=product.id %}#addreview" class="btn btn-success btn-small">
99 100
                         {% trans "Write a review" %}
100 101
                     </a>
101 102
                 {% endif %}
102
-                </h3>
103
+                </p>
103 104
             {% endiffeature %}
104 105
 
105 106
             <hr/>

+ 4
- 4
oscar/templates/oscar/catalogue/partials/stock_record.html View File

@@ -7,14 +7,14 @@
7 7
 
8 8
 {% if session.price.exists %}
9 9
     {% if session.price.excl_tax == 0 %}
10
-        <h2 class="price_color">{% trans "Free" %}</h2>
10
+        <p class="price_color">{% trans "Free" %}</p>
11 11
     {% elif session.price.is_tax_known %}
12
-        <h2 class="price_color">{{ session.price.incl_tax|currency:session.price.currency }}</h2>
12
+        <p class="price_color">{{ session.price.incl_tax|currency:session.price.currency }}</p>
13 13
     {% else %}
14
-        <h2 class="price_color">{{ session.price.excl_tax|currency:session.price.currency }}</h2>
14
+        <p class="price_color">{{ session.price.excl_tax|currency:session.price.currency }}</p>
15 15
     {% endif %}
16 16
 {% else %}
17
-    <h2 class="price_color">&nbsp;</h2>
17
+    <p class="price_color">&nbsp;</p>
18 18
 {% endif %}
19 19
 <p class="{{ session.availability.code }} availability">
20 20
     <i class="icon-{% if session.availability.is_available_to_buy %}ok{% else %}remove{% endif %}"></i>

+ 1
- 1
oscar/templates/oscar/catalogue/reviews/review_list.html View File

@@ -39,8 +39,8 @@
39 39
         {% include 'catalogue/reviews/review_product.html' %}
40 40
 
41 41
         {% if reviews %}
42
-            <h4>{% trans "Sort by:" %}</h4>
43 42
             <form action="." method="get" class="form-inline">
43
+                <label for="sort_by">{% trans "Sort by:" %}</label>
44 44
                 <select name="sort_by">
45 45
                     <option value="score">{% trans "Score" %}</option>
46 46
                     <option value="recency">{% trans "Recency" %}</option>

+ 4
- 4
oscar/templates/oscar/catalogue/reviews/review_product.html View File

@@ -15,12 +15,12 @@
15 15
         </div>
16 16
     </div>
17 17
     <div class="span10">
18
-        <h3><a href="{{ product.get_absolute_url }}">{{ product.get_title }}</a></h3>
18
+        <h2><a href="{{ product.get_absolute_url }}">{{ product.get_title }}</a></h2>
19 19
         {% include "catalogue/partials/stock_record.html" %}
20 20
 
21 21
         {% iffeature "reviews" %}
22 22
             {% if product.rating != None %}
23
-                <h4 class="star-rating {{ product.rating|as_stars }}">
23
+                <p class="star-rating h4 {{ product.rating|as_stars }}">
24 24
                     <i class="icon-star"></i>
25 25
                     <i class="icon-star"></i>
26 26
                     <i class="icon-star"></i>
@@ -36,14 +36,14 @@
36 36
                     </a></small>
37 37
                     &nbsp;
38 38
             {% else %}
39
-                <h4>
39
+                <p>
40 40
             {% endif %}
41 41
             {% if product|is_review_permitted:user %}
42 42
                 <a id="write_review" href="{% url 'catalogue:reviews-add' product_slug=product.slug product_pk=product.id %}#addreview" class="btn btn-success btn-small">
43 43
                     {% trans "Write a review" %}
44 44
                 </a>
45 45
             {% endif %}
46
-            </h4>
46
+            </p>
47 47
         {% endiffeature %}
48 48
     </div>
49 49
 </div>

+ 10
- 7
oscar/templates/oscar/checkout/checkout.html View File

@@ -34,7 +34,7 @@
34 34
                                 {% trans "Change" %}
35 35
                             </a>
36 36
                         {% endblock %}
37
-                        <h4>{% trans "Address" %}</h4>
37
+                        <h3>{% trans "Address" %}</h3>
38 38
                         <address>
39 39
                             {% for field in shipping_address.active_address_fields %}
40 40
                                 {{ field }}<br/>
@@ -65,7 +65,7 @@
65 65
                                 {% trans "Change" %}
66 66
                             </a>
67 67
                         {% endblock %}
68
-                        <h4>{% trans "Shipping method" %}</h4>
68
+                        <h3>{% trans "Shipping method" %}</h3>
69 69
                         <p>{{ shipping_method.name }}
70 70
                             {% if shipping_method.description %}
71 71
                                 - {{ shipping_method.description|safe }}
@@ -87,7 +87,7 @@
87 87
                     <a href="{% url 'checkout:payment-details' %}" class="pull-right">
88 88
                         {% trans "Change" %}
89 89
                     </a>
90
-                    <h4>{% trans "Payment" %}</h4>
90
+                    <h3>{% trans "Payment" %}</h3>
91 91
                     <p>{% trans "Payment details to go here" %}</p>
92 92
                 </div>
93 93
             </div>
@@ -106,9 +106,9 @@
106 106
         </div>
107 107
         <div class="basket-title">
108 108
             <div class="row-fluid">
109
-                <h4 class="span9">{% trans "Product" %}</h4>
110
-                <h4 class="span1 align-center">{% trans "Quantity" %}</h4>
111
-                <h4 class="span2 align-right">{% trans "Price" %}</h4>
109
+                <p class="span9 h4">{% trans "Product" %}</p>
110
+                <p class="span1 h4 align-center">{% trans "Quantity" %}</p>
111
+                <p class="span2 h4 align-right">{% trans "Price" %}</p>
112 112
             </div>
113 113
         </div>
114 114
         {% for line in basket.all_lines %}
@@ -125,7 +125,7 @@
125 125
                         </div>
126 126
                     </div>
127 127
                     <div class="span7">
128
-                        <h4><a href="{{ line.product.get_absolute_url }}">{{ line.description }}</a></h4>
128
+                        <h3><a href="{{ line.product.get_absolute_url }}">{{ line.description }}</a></h3>
129 129
                         <span class="availability {{ session.availability.code }}">{{ session.availability.message }}</span>
130 130
                     </div>
131 131
                     <div class="span1 align-center">
@@ -147,6 +147,9 @@
147 147
         <div class="row-fluid">
148 148
             <div class="span6">&nbsp;</div>
149 149
             <div class="span6">
150
+                <div class="sub-header">
151
+                    <h2>{% trans 'Totals' %}</h2>
152
+                </div>
150 153
                 {% include 'basket/partials/basket_totals.html' %}
151 154
             </div>
152 155
         </div>

+ 17
- 14
oscar/templates/oscar/checkout/thank_you.html View File

@@ -36,7 +36,7 @@
36 36
                     <h2>{% trans "Shipping" %}</h2>
37 37
                 </div>
38 38
                 <div class="well well-info">
39
-                    <h4>{% trans "Address" %}</h4>
39
+                    <h3>{% trans "Address" %}</h3>
40 40
                     {% if order.shipping_address %}
41 41
                         <address>
42 42
                             {% for field in order.shipping_address.active_address_fields %}
@@ -64,7 +64,7 @@
64 64
                 </div>
65 65
 
66 66
                 <div class="well well-info">
67
-                    <h4>{% trans "Shipping method" %}</h4>
67
+                    <h3>{% trans "Shipping method" %}</h3>
68 68
                     <p>{{ order.shipping_method }}</p>
69 69
                 </div>
70 70
             {% endblock %}
@@ -76,7 +76,7 @@
76 76
                     <h2>{% trans "Payment" %}</h2>
77 77
                 </div>
78 78
                 <div class="well well-success">
79
-                    <h4>{% trans "Payment" %}</h4>
79
+                    <h3>{% trans "Payment" %}</h3>
80 80
                     {% for source in order.sources.all %}
81 81
                         <p>
82 82
                         {% if source.reference %}
@@ -110,15 +110,15 @@
110 110
     </div>
111 111
 
112 112
     <div class="sub-header">
113
-        <h3>{% trans "Order details" %}</h3>
113
+        <h2>{% trans "Order details" %}</h2>
114 114
     </div>
115 115
 
116 116
     <div class="basket-title">
117 117
         <div class="row-fluid">
118
-            <h4 class="span6">{% trans "Items purchased" %}</h4>
119
-            <h4 class="span3 align-center">{% trans "Estimated dispatch date" %}</h4>
120
-            <h4 class="span1 align-center">{% trans "Quantity" %}</h4>
121
-            <h4 class="span2 align-right">{% trans "Total" %}</h4>
118
+            <p class="span6 h4">{% trans "Items purchased" %}</p>
119
+            <p class="span3 h4 align-center">{% trans "Estimated dispatch date" %}</p>
120
+            <p class="span1 h4 align-center">{% trans "Quantity" %}</p>
121
+            <p class="span2 h4 align-right">{% trans "Total" %}</p>
122 122
         </div>
123 123
     </div>
124 124
 
@@ -135,7 +135,7 @@
135 135
                     </div>
136 136
                 </div>
137 137
                 <div class="span4">
138
-                    <h4><a href="{{ line.product.get_absolute_url }}">{{ line.description }}</a></h4>
138
+                    <h3><a href="{{ line.product.get_absolute_url }}">{{ line.description }}</a></h3>
139 139
                 </div>
140 140
                 <div class="span3 align-center">
141 141
                     {{ line.est_dispatch_date|default:"-" }}
@@ -160,11 +160,14 @@
160 160
         <div class="row-fluid">
161 161
             <div class="span6">&nbsp;</div>
162 162
             <div class="span6">
163
+                <div class="sub-header">
164
+                    <h2>{% trans 'Totals' %}</h2>
165
+                </div>
163 166
 
164 167
                 <div id="basket_totals">
165 168
                     <table class="table table-condensed">
166 169
                         <tr>
167
-                            <th colspan="2"><h4>{% trans "Basket" %}</h4></th>
170
+                            <th colspan="2"><h3>{% trans "Basket" %}</h3></th>
168 171
                         </tr>
169 172
                         {% with discounts=order.basket_discounts %}
170 173
                             {% block discount_totals %}
@@ -205,7 +208,7 @@
205 208
 
206 209
                         {% block shipping_total %}
207 210
                             <tr>
208
-                                <th colspan="2"><h4>{% trans "Shipping" %}</h4></th>
211
+                                <th colspan="2"><h3>{% trans "Shipping" %}</h3></th>
209 212
                             </tr>
210 213
                             <tr>
211 214
                                 <td>{% trans "Shipping method" %}</td>
@@ -259,7 +262,7 @@
259 262
                                         <th colspan="2">&nbsp;</th>
260 263
                                     </tr>
261 264
                                     <tr>
262
-                                        <th colspan="2"><h4>{% trans "Post order actions" %}</h4></th>
265
+                                        <th colspan="2"><h3>{% trans "Post order actions" %}</h3></th>
263 266
                                     </tr>
264 267
                                     {% for action in order.post_order_actions %}
265 268
                                         <tr>
@@ -275,8 +278,8 @@
275 278
                                 <th colspan="2">&nbsp;</th>
276 279
                             </tr>
277 280
                             <tr>
278
-                                <td class="total"><h4>{% trans "Order total" %}</h4></td>
279
-                                <td class="total align-right"><h4 class="price_color">{{ order.total_incl_tax|currency:order.currency }}</h4></td>
281
+                                <td class="total"><h3>{% trans "Order total" %}</h3></td>
282
+                                <td class="total align-right"><h3 class="price_color">{{ order.total_incl_tax|currency:order.currency }}</h3></td>
280 283
                             </tr>
281 284
                         {% endblock order_total %}
282 285
                     </table>

+ 2
- 2
oscar/templates/oscar/customer/order/order_detail.html View File

@@ -143,12 +143,12 @@
143 143
 
144 144
     <hr>
145 145
 
146
-    <h3>{% trans 'Shipping Method' %}</h3>
146
+    <h2>{% trans 'Shipping Method' %}</h2>
147 147
     <p>{{ order.shipping_method }}</p>
148 148
 
149 149
     <hr>
150 150
 
151
-    <h3>{% trans 'Shipping Address' %}</h3>
151
+    <h2>{% trans 'Shipping Address' %}</h2>
152 152
 
153 153
     <table class="table table-striped table-bordered">
154 154
         <tr>

+ 2
- 2
oscar/templates/oscar/customer/order/order_list.html View File

@@ -21,7 +21,7 @@
21 21
 
22 22
     {% if orders or form.is_bound %}
23 23
         <div class="well">
24
-            <h3>{% trans "Filter" %}</h3>
24
+            <h2>{% trans "Filter" %}</h2>
25 25
             <form action="." method="get" class="form-horizontal">
26 26
                 {% include "partials/form_fields.html" with form=form %}
27 27
                 <div class="controls">
@@ -33,7 +33,7 @@
33 33
     {% endif %}
34 34
 
35 35
     {% if orders %}
36
-        <h3>{{ form.description }}</h3>
36
+        <h2>{{ form.description }}</h2>
37 37
         <table class="table table-striped table-bordered">
38 38
             <tr>
39 39
                 <th>{% trans "Order number" %}</th>

+ 1
- 1
oscar/templates/oscar/offer/detail.html View File

@@ -39,7 +39,7 @@
39 39
         {% endif %}
40 40
             <div class="span5">
41 41
                 <div class="well">
42
-                    <h3><i class="icon-exclamation-sign icon-large"></i> {% trans "What you need to do" %}</h3>
42
+                    <h2 class="h4"><i class="icon-exclamation-sign icon-large"></i> {% trans "What you need to do" %}</h2>
43 43
                     <p>{{ upsell_message }}</p>
44 44
                 </div>
45 45
             </div>

+ 1
- 1
oscar/templates/oscar/offer/list.html View File

@@ -27,7 +27,7 @@
27 27
         <p>{% trans "There are no site offers at the moment." %}</p>
28 28
     {% else %}
29 29
         {% for offer in offers %}
30
-        <h4>{{ offer.name }}</h4>
30
+        <h2>{{ offer.name }}</h2>
31 31
         {% if offer.description %}
32 32
             <p>{{ offer.description|safe }}</p>
33 33
         {% endif %}

+ 1
- 1
oscar/templates/oscar/partials/brand.html View File

@@ -1 +1 @@
1
-<h1 class="span7"><a href="{{ homepage_url }}">{% block brand_title %}{{ shop_name }}</a><small> {{ shop_tagline }}</small>{% endblock %}</h1>
1
+<div class="span7 h1"><a href="{{ homepage_url }}">{% block brand_title %}{{ shop_name }}</a><small> {{ shop_tagline }}</small>{% endblock %}</div>

+ 1
- 1
oscar/templates/oscar/promotions/baseproductlist.html View File

@@ -4,7 +4,7 @@
4 4
 {% block content %}
5 5
 <section class="well well-blank">
6 6
     <div class="sub-header">
7
-        <h2>{{ promotion.name }}</h2>
7
+        <h3>{{ promotion.name }}</h3>
8 8
     </div>
9 9
 
10 10
     {{ promotion.description|safe }}

Loading…
Cancel
Save