a518143e by Jeremy Groot

u

1 parent 2ad0963d
......@@ -14206,6 +14206,11 @@ li.btn_style a {
article > h1 + p {
margin-bottom: 2.5rem !important;
text-align: center;
}
.has-sidebar article > h1 + p {
text-align: left;
}
.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 {
//This appears to be the standard spacing after the sub paragraph on the default template
article > h1 + p {
margin-bottom:2.5rem !important;
text-align: center;
}
.has-sidebar {
article > h1 + p {
text-align: left;
}
}
......
......@@ -27,7 +27,7 @@ function get_breadcrumb() {
?>
<ul class='breadcrumbs'>
<?php if($my_parent) { ?>
<li><a href='/<?= get_permalink($my_parent) ?>'><?= $my_parent->post_title ?></a></li><li>|</li>
<li><a href='<?= get_permalink($my_parent) ?>'><?= $my_parent->post_title ?></a></li><li>|</li>
<?php } ?>
<li><?= get_the_title() ?></li>
</ul>
......