summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cdm.css5
-rw-r--r--include/functions.php4
-rw-r--r--tt-rss.css5
3 files changed, 12 insertions, 2 deletions
diff --git a/cdm.css b/cdm.css
index 021135dfc..941a51101 100644
--- a/cdm.css
+++ b/cdm.css
@@ -159,3 +159,8 @@ div.cdmContentInner p {
div.cdmContentInner iframe {
min-width : 50%;
}
+
+div.cdmHeader span.author {
+ color : gray;
+ font-size : 11px;
+}
diff --git a/include/functions.php b/include/functions.php
index 8804d71d1..3e87672e2 100644
--- a/include/functions.php
+++ b/include/functions.php
@@ -3024,8 +3024,8 @@
title=\"".htmlspecialchars($line['title'])."\"
href=\"" .
htmlspecialchars($line["link"]) . "\">" .
- $line["title"] .
- "<span class='author'>$entry_author</span></a></div>";
+ $line["title"] . "</a>" .
+ "<span class='author'>$entry_author</span></div>";
} else {
$rv['content'] .= "<div class='postTitle'>" . $line["title"] . "$entry_author</div>";
}
diff --git a/tt-rss.css b/tt-rss.css
index 9fc52b209..ff7134f11 100644
--- a/tt-rss.css
+++ b/tt-rss.css
@@ -1198,3 +1198,8 @@ div.postContent p {
div.postContent iframe {
min-width : 50%;
}
+
+div.postHeader span.author {
+ color : gray;
+ font-size : 11px;
+}