Once again, a new theme

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

One comment

  1. Thomas Aylott says:

    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

Comments are closed.