From: <m_h...@us...> - 2006-08-04 16:35:53
|
Revision: 267 Author: m_hildebrand Date: 2006-08-04 09:35:43 -0700 (Fri, 04 Aug 2006) ViewCVS: http://svn.sourceforge.net/tcdb/?rev=267&view=rev Log Message: ----------- Commented out code for sticky footer... it is now about 8 lines below the bottom object. Un-comment the code to get it sticky again, but be aware that it will need some TLC to make it right :( Modified Paths: -------------- Website/App_Themes/Python/python.css Website/App_Themes/Python/style-ie.css Website/TCDB.master Modified: Website/App_Themes/Python/python.css =================================================================== --- Website/App_Themes/Python/python.css 2006-08-04 16:12:13 UTC (rev 266) +++ Website/App_Themes/Python/python.css 2006-08-04 16:35:43 UTC (rev 267) @@ -1,12 +1,12 @@ /********** BEGIN Global Classes **********/ HTML { - height: 100%; + /*height: 100%;*/ } BODY { - height: 100%; + /*height: 100%;*/ margin: 0; padding: 0; font-family: Verdana, Sans-Serif; @@ -269,9 +269,9 @@ #NonFooter { - position: relative; - min-height: 100%; - overflow: auto; + position: relative; + min-height: 100%; + overflow: visible; } #FooterContent @@ -281,8 +281,8 @@ padding: 6px 0 6px 0; vertical-align: middle; text-align: center; - position: relative; - margin: -2.35em auto 0 auto; + /*position: relative;*/ + /*margin: -2.35em auto 0 auto;*/ } /********** END Footer Content **********/ Modified: Website/App_Themes/Python/style-ie.css =================================================================== --- Website/App_Themes/Python/style-ie.css 2006-08-04 16:12:13 UTC (rev 266) +++ Website/App_Themes/Python/style-ie.css 2006-08-04 16:35:43 UTC (rev 267) @@ -1,4 +1,8 @@ - +.body +{ + background: red; +} + .bottom { position: static; @@ -20,11 +24,13 @@ /* A CSS hack that only applies to IE -- specifies a different height for the footer and set the position to static so the background displays */ /* TODO: Figure out a way to keep the footer in IE from overlaping page content */ +/* #FooterContent { position: static; margin-top: -2.3em; } +*/ .form .checkbox INPUT { Modified: Website/TCDB.master =================================================================== --- Website/TCDB.master 2006-08-04 16:12:13 UTC (rev 266) +++ Website/TCDB.master 2006-08-04 16:35:43 UTC (rev 267) @@ -16,11 +16,11 @@ <head runat="server"> <title>TCDB: Test Case DataBase 2006</title> </head> -<!--[it lt IE 8]> +<!--[if IE]> <link href="App_Themes/<%= Page.StyleSheetTheme %>/style-ie.css" type="text/css" rel="stylesheet" /> <![endif]--> <body> - <div id="NonFooter"> + <!--<div id="NonFooter" style="border: solid thin red;">--> <% if (ConfigDB.GetConfigString("tcdb_version").Equals(Constants.TCDB_VERSION)) { %> @@ -109,8 +109,8 @@ <div class="motd"><span>Unable to load TCDB. Code version [<%= Constants.TCDB_VERSION %>] does not equal schema version [<%= ConfigDB.GetConfigString("tcdb_version") %>].</span></div> <% } %> - <br /><br /> - </div> + <br /><br /><br /><br /><br /><br /><br /><br /> + <!--</div>--> <div id="FooterContent"> <TCDB:Footer runat="server" ID="Footer" /> </div> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |