Once again, a new theme

written by edavis on December 29th, 2005 @ 10:41 AM

Well you might notice that I once again have a new theme up. This one is called subtleTheme and is by Thomas Aylott.

I adjusted the width of the content area a bit and had to patch the code a bit for trunk but it works pretty good, and looks great.

The patch is in

views/articles/read.rhtml line:22
<%= article_html(@article) %>

Eric Davis

Comments

  • Thomas Aylott on December 30, 2005 @ 12:30 AM

    Nice theme ;) That reminds me. There's a little fix that keeps IE 5 from crashing. *change:*
    
    	<!--[if IE 5]>
    	  <link href="/stylesheets/theme/subtletheme_IE5.css" media="screen" rel="Stylesheet" type="text/css" />
    	<![endif]-->
    	<!--[if gt IE 5]>
    	  <link href="/stylesheets/theme/subtletheme_IE55.css" media="screen" rel="Stylesheet" type="text/css" />
    	<![endif]-->
    
    *to:*
    
    	<!--[if lte IE 5.0]>
    	  <link href="/stylesheets/theme/subtletheme_IE5.css" media="screen" rel="Stylesheet" type="text/css" />
    	<![endif]-->
    	<!--[if IE 5.5000]>
    	  <link href="/stylesheets/theme/subtletheme_IE55.css" media="screen" rel="Stylesheet" type="text/css" />
    	<![endif]-->
    	<!--[if !IE 5]>
    	  <link href="/stylesheets/theme/subtletheme_IE55.css" media="screen" rel="Stylesheet" type="text/css" />
    	<![endif]-->
    
    The old version makes IE 5.5 load both and it just can't handle it. :D

Post a comment