From 2fc3c897f30d2f1663dcc3c768ed58a0c7da42a0 Mon Sep 17 00:00:00 2001 From: jhunkeler Date: Wed, 27 Jan 2010 22:45:10 +0000 Subject: Theme system has been implemented and we were trying to clean up any code that was causing problems after the move. git-svn-id: http://svn.3rd-infantry-division.org/testing/branches/Bayonet CMS v2.1@474 c5b2fb0a-d05d-0410-98c8-828840a80ff6 --- blocks/donations/index.php | 9 ++------- index.php | 40 +++++++++++++++++++++++++++++++++----- themes/default/header.php | 4 ++-- themes/default/include/default.ini | 2 -- themes/default/include/primary.css | 16 +++++++-------- themes/default/include/theme.ini | 2 ++ 6 files changed, 49 insertions(+), 24 deletions(-) delete mode 100644 themes/default/include/default.ini create mode 100644 themes/default/include/theme.ini diff --git a/blocks/donations/index.php b/blocks/donations/index.php index 1329f20..7b62be4 100644 --- a/blocks/donations/index.php +++ b/blocks/donations/index.php @@ -1,12 +1,7 @@ - - -
-
+
-
-
-
+ diff --git a/index.php b/index.php index 9d09f48..f9b7177 100644 --- a/index.php +++ b/index.php @@ -1,10 +1,12 @@ " type="image/x-icon" />--> - - + + diff --git a/themes/default/include/default.ini b/themes/default/include/default.ini deleted file mode 100644 index 223cd14..0000000 --- a/themes/default/include/default.ini +++ /dev/null @@ -1,2 +0,0 @@ -[author] -name = "Joseph Hunkeler" \ No newline at end of file diff --git a/themes/default/include/primary.css b/themes/default/include/primary.css index 103c21b..93aa1ab 100644 --- a/themes/default/include/primary.css +++ b/themes/default/include/primary.css @@ -17,14 +17,14 @@ /*width: 990px; */ height: 28px; background: #284c75; - background-image:url('images/navbackground.jpg'); + background-image:url('../images/navbackground.jpg'); color: #000000; text-align:center; /* margin: auto auto; */ font-size:14px; } table.main { - background-image:url('images/sandbackground.jpg'); + background-image:url('../images/sandbackground.jpg'); padding: 0px; color:#ffffff; width:990px; @@ -70,7 +70,7 @@ border:1px solid #333333; } div.contentHeading { - background-image:url(images/blockbackground.jpg); + background-image:url(../images/blockbackground.jpg); background-repeat:repeat-x; background-color:#112f50; height:25px; @@ -187,13 +187,13 @@ } /* photo gallery styles */ .photoleft{ - background-image:url("images/photoleft.png"); + background-image:url("../images/photoleft.png"); background-repeat:repeat-y; text-align:center; width:49px; } .photoright{ - background-image:url("images/photoright.png"); + background-image:url("../images/photoright.png"); background-repeat:repeat-y; text-align:center; width:49px; @@ -220,13 +220,13 @@ } /* may need these two when we add the background images back */ .leftbar { - /* background-image:url("images/leftshadow.png"); */ + /* background-image:url("../images/leftshadow.png"); */ background-repeat: repeat-y; width:50px; } .rightbar { - /* background-image:url("images/rightshadow.png"); */ + /* background-image:url("../images/rightshadow.png"); */ background-repeat: repeat-y; width:15px; @@ -248,5 +248,5 @@ font-family:arial; } - +@import "style_bbcode.css" diff --git a/themes/default/include/theme.ini b/themes/default/include/theme.ini new file mode 100644 index 0000000..223cd14 --- /dev/null +++ b/themes/default/include/theme.ini @@ -0,0 +1,2 @@ +[author] +name = "Joseph Hunkeler" \ No newline at end of file -- cgit