a518143e by Jeremy Groot

u

1 parent 2ad0963d
...@@ -14206,6 +14206,11 @@ li.btn_style a { ...@@ -14206,6 +14206,11 @@ li.btn_style a {
14206 14206
14207 article > h1 + p { 14207 article > h1 + p {
14208 margin-bottom: 2.5rem !important; 14208 margin-bottom: 2.5rem !important;
14209 text-align: center;
14210 }
14211
14212 .has-sidebar article > h1 + p {
14213 text-align: left;
14209 } 14214 }
14210 14215
14211 .wp-block-button.wp-block-button__width-100 { 14216 .wp-block-button.wp-block-button__width-100 {
......
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
...@@ -34,6 +34,13 @@ li.btn_style { ...@@ -34,6 +34,13 @@ li.btn_style {
34 //This appears to be the standard spacing after the sub paragraph on the default template 34 //This appears to be the standard spacing after the sub paragraph on the default template
35 article > h1 + p { 35 article > h1 + p {
36 margin-bottom:2.5rem !important; 36 margin-bottom:2.5rem !important;
37 text-align: center;
38 }
39
40 .has-sidebar {
41 article > h1 + p {
42 text-align: left;
43 }
37 } 44 }
38 45
39 46
......
...@@ -27,7 +27,7 @@ function get_breadcrumb() { ...@@ -27,7 +27,7 @@ function get_breadcrumb() {
27 ?> 27 ?>
28 <ul class='breadcrumbs'> 28 <ul class='breadcrumbs'>
29 <?php if($my_parent) { ?> 29 <?php if($my_parent) { ?>
30 <li><a href='/<?= get_permalink($my_parent) ?>'><?= $my_parent->post_title ?></a></li><li>|</li> 30 <li><a href='<?= get_permalink($my_parent) ?>'><?= $my_parent->post_title ?></a></li><li>|</li>
31 <?php } ?> 31 <?php } ?>
32 <li><?= get_the_title() ?></li> 32 <li><?= get_the_title() ?></li>
33 </ul> 33 </ul>
......