code highlighting links May 12th, 2007
Code highlighting is enabled! Here are the links that helped get me started:
Elliott Blatt's Blogand
Raymond Lim's Blogthe code was overflowing out of the div at first, so I changed the top of codehighlight.css to enable horizontal scroll
pre {background-color: #FFFFCC;
background-color: #000;
padding-left: 20px;
padding-top: 1em;
padding-bottom: 1em;
margin-bottom: 1.5em;
color:#fff;
width: 450px;
overflow: auto;
overflow-y:hidden;
}
Sweet, we're live and cookin now.
props to the theme guys! May 12th, 2007
I've finally got the theme selected and tweaked! Using inf02 which was in the Mephisto Theme Gallery
Props go out to the following:
Design by Inf infscripts
Ported by railsgrunt
Powered by mephisto
Also, I made the following MOD to layout.liquid enabling search:<div id="menu">
<div>
<form method="get" id="sform" action="/search">
<input type="text" id="q" value="search" name="q" size="10" onfocus="q.value='';" onblur="q.value='search' "/>
</form>
</div>
...