From 68d563fa5706c86250ed561740cd85394a8318fc Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Wed, 9 Aug 2017 10:04:34 +0200 Subject: [PATCH] added style.css file and styling for shared header --- style.css | 3 +++ typography.php | 1 + 2 files changed, 4 insertions(+) create mode 100644 style.css diff --git a/style.css b/style.css new file mode 100644 index 0000000..eb13cf2 --- /dev/null +++ b/style.css @@ -0,0 +1,3 @@ +span.shared-time { + display: unset; +} diff --git a/typography.php b/typography.php index 959a9d5..d3d1874 100644 --- a/typography.php +++ b/typography.php @@ -58,5 +58,6 @@ function typography_render ( &$a, &$o) { $lng = str_replace( $lng_long, $lng_id, $lng); $typo->settings["diacriticLanguage"] = $lng; $o['html'] = $typo->process($o['html']); + $a->page['htmlhead'] .= ''; unset($l); }