diff options
author | Bryan Newbold <bnewbold@animus.robocracy.org> | 2007-03-06 15:38:41 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@animus.robocracy.org> | 2007-03-06 15:38:41 -0800 |
commit | fc3a4435e1e819f873970e3724d6fb3f69a6ea6a (patch) | |
tree | 3357b8217e0a2ae75d11ee72a002097a6d8395d7 | |
parent | ed9e597e32c7a118e47eced3b07974297945e40b (diff) | |
download | bnewnet-fc3a4435e1e819f873970e3724d6fb3f69a6ea6a.tar.gz bnewnet-fc3a4435e1e819f873970e3724d6fb3f69a6ea6a.zip |
finally fixed frontpage style in IE
-rw-r--r-- | bn_django/templates/frontpage.html | 10 | ||||
-rw-r--r-- | static/style/default.css | 17 |
2 files changed, 11 insertions, 16 deletions
diff --git a/bn_django/templates/frontpage.html b/bn_django/templates/frontpage.html index dc3f450..52db15e 100644 --- a/bn_django/templates/frontpage.html +++ b/bn_django/templates/frontpage.html @@ -28,20 +28,17 @@ For 2007 i'm taking a year break from <a href="http://web.mit.edu">MIT</a>... as of February i'm living in Seattle working at <a href="http://azalea.com/AboutUs">Azalea Software</a> doing tech work. Starting in mid-May i'll be working at the Moss Landing Marine Labs in California, followed in October by field work in Antartica. I will be back at MIT for the spring 2008 semester. <br /> -<br /> - <div class="right_stuff"> For more recent content see the <a href="/timeline/">timeline</a> </div> - +<br /> <div class="col_right"> <div class="col_title">Latest knowledge</div> {% if latest_knowledge %} {% else %} None yet! -<br /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> {% endif %} </div> @@ -50,8 +47,6 @@ None yet! {% if latest_comments %} {% else %} None yet! -<br /><br /> <br /> <br /> -<br /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> {% endif %} </div> @@ -67,9 +62,6 @@ None yet! </div> {% else %} <br/><br />None yet! -<br /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> {% endif %} </div> -<br /> <br /> <br /> <br /> -<br /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> {% endblock %} diff --git a/static/style/default.css b/static/style/default.css index 2c63d93..e3827dc 100644 --- a/static/style/default.css +++ b/static/style/default.css @@ -101,12 +101,17 @@ pre.large { } .col_left { width: 24%; + height: 275px; + overflow: hidden; margin-top: 3px; + margin-left: 3px; padding: 5px; - float: right; + /*float: right;*/ } .col_center { - width: 38%; + width: 32%; + height: 275px; + overflow: hidden; margin-top: 3px; padding: 5px; float: right; @@ -114,14 +119,12 @@ pre.large { border-right: 1px solid black; } .col_right { - width: 31%; - left: 67%; + width: 37%; + height: 275px; + overflow: hidden; margin-top: 3px; - margin-right: 1%; padding: 5px; float: right; - left: 0px; - top: 0px; } .content_caption { text-align: center; |