Update of /cvsroot/php-blog/jBlog
In directory sc8-pr-cvs1:/tmp/cvs-serv15492
Modified Files:
jBlog_functions.inc.php
Log Message:
Some CSS fixes. The calendar table's CSS needs to be revised it's pretty messy :)
Index: jBlog_functions.inc.php
===================================================================
RCS file: /cvsroot/php-blog/jBlog/jBlog_functions.inc.php,v
retrieving revision 1.74
retrieving revision 1.75
diff -u -d -r1.74 -r1.75
--- jBlog_functions.inc.php 14 Mar 2003 22:46:07 -0000 1.74
+++ jBlog_functions.inc.php 27 Mar 2003 21:29:49 -0000 1.75
@@ -112,8 +112,8 @@
?>
<TABLE CLASS='jBlog_calendar' CELLSPACING=0>
<TR>
-<TD ALIGN='left'><A HREF='<?= $jBlog['jBlogHTTPPath'] ?>index.php?jBlog[calendarZoom]=<?= $previousYear.sprintf("%02d",$previousMonth)?>'><IMG ALT="Back" SRC='<?= $jBlog["jBlogHTTPPath"] ?>pixel/back.png' BORDER='0'></A></TD>
-<TD COLSPAN='5' ALIGN='center' VALIGN='bottom' CLASS='calendarHeader'><B><nobr>
+<TD ALIGN='left' class='jBlog_calendarHeader'><A HREF='<?= $jBlog['jBlogHTTPPath'] ?>index.php?jBlog[calendarZoom]=<?= $previousYear.sprintf("%02d",$previousMonth)?>'><IMG ALT="Back" SRC='<?= $jBlog["jBlogHTTPPath"] ?>pixel/back.png' BORDER='0'></A></TD>
+<TD COLSPAN='5' ALIGN='center' VALIGN='bottom' CLASS='jBlog_calendarHeader'><B><nobr>
<?php
if ($jBlog["rewrite"]==true) {
$link = $jBlog["jBlogHTTPPath"]."archives/d_".$year.sprintf("%02d",$month).".html";
@@ -124,7 +124,7 @@
?>
<a href='<?= $link ?>'><?= $jBlog["months"][$month]." '".substr($year, 2) ?></a>
</nobr></B></TD>
-<TD ALIGN='right'>
+<TD ALIGN='right' class='jBlog_calendarHeader'>
<A HREF='<?= $jBlog['jBlogHTTPPath'] ?>index.php?jBlog[calendarZoom]=<?= $nextYear.sprintf("%02d",$nextMonth) ?>'>
<IMG ALT="Forward" SRC='<?= $jBlog["jBlogHTTPPath"] ?>pixel/forward.png' BORDER='0'>
</A>
@@ -149,9 +149,9 @@
// Start printing
if (($x>0 || $y>=$firstDayWeekDay) && $currDay<=$nrOfDays) {
-
+ /*
if ($activeDays[$currDay] > 1) $bg = "BGCOLOR='#DBECFF'";
- else $bg = "";
+ else $bg = ""; */
print("<TD CLASS='jBlog_calendarDay$cellProp' ALIGN='center' $bg VALIGN='middle'>");
// Print day
|