summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2007-10-30 09:27:56 +0100
committerAndrew Dolgov <[email protected]>2007-10-30 09:27:56 +0100
commitb27967acf3f1f59f047ab7fb99b8b8a0e9f02159 (patch)
tree790540d3c2104ee26c123e1d9e9bc17e211981a8
parent203610630a5c2d077cbfb1d69e89c1e60d8b074e (diff)
3pane tweaks
-rw-r--r--functions.php35
-rw-r--r--themes/3pane/theme.css4
2 files changed, 21 insertions, 18 deletions
diff --git a/functions.php b/functions.php
index 53723273c..45c17ec25 100644
--- a/functions.php
+++ b/functions.php
@@ -3662,27 +3662,28 @@
print "<td class=\"headlineTitle$rtl_cpart\">";
- if ($_SESSION["theme"] != "3pane") {
+ print "<span class=\"headlineInnerTitle\">";
- if ($feed_site_url) {
- if (!$bottom) {
- $target = "target=\"_new\"";
- }
- print "<a $target href=\"$feed_site_url\">".
- truncate_string($feed_title,30)."</a>";
- } else {
- print $feed_title;
- }
-
- if ($search) {
- $search_q = "&q=$search&m=$match_on&smode=$search_mode";
- }
-
- if ($user_page_offset > 1) {
- print " [$user_page_offset] ";
+ if ($feed_site_url) {
+ if (!$bottom) {
+ $target = "target=\"_new\"";
}
+ print "<a $target href=\"$feed_site_url\">".
+ truncate_string($feed_title,30)."</a>";
+ } else {
+ print $feed_title;
+ }
+
+ if ($search) {
+ $search_q = "&q=$search&m=$match_on&smode=$search_mode";
}
+ if ($user_page_offset > 1) {
+ print " [$user_page_offset] ";
+ }
+
+ print "</span>";
+
if (!$bottom) {
print "
<a target=\"_new\"
diff --git a/themes/3pane/theme.css b/themes/3pane/theme.css
index 0f2cada93..be34c08a3 100644
--- a/themes/3pane/theme.css
+++ b/themes/3pane/theme.css
@@ -26,4 +26,6 @@ div.postHeader div.postDateRTL {
float : none;
}
-
+span.headlineInnerTitle {
+ display : none;
+}