This blog has been retired, new updates are happening at http://josephscott.org/
0

Links for Thu 17 Jan 2008

Posted on January 17th, 2008 / Comments Off
Tags: , , , , , , , ,
0

Links for Mon 14 Jan 2008

Posted on January 14th, 2008 / Comments Off
Tags: , , , , , , , , , , ,
0

Links for Mon 14 Jan 2008

Posted on January 14th, 2008 / Comments Off
Tags: , , , , , , , , , , ,
0

New Site Design

Posted on May 26th, 2005 / Comments Off
Tags: , , ,

If you’ve ever been here before you’ll probably quickly realize that I’ve redesigned the site. I finally took some time over a few weeks to put together my own layout. I borrowed the feel of the layout from Russell Beattie. I’m not done yet, but it seems to be functional, so I figured it was better to get it up an live than to wait for it be complete/perfect.

I’m making more use of WordPress’s page feature and several plugins to get the features that I wanted. Here’s a list of the plugins I’m using (so far):

  • WP-GateKeeper to prevent comment spam. This is a plugin that I was already using, but it is worth another mention.
  • Jerome’s Keywords Plugin: This plugin manages tags for WP posts. This seems to be one of the best tag plugins for WP, it certainly has a lot of documention.
  • Wordpress PHP Exec Plugin: The pages feature in WP is nice, but I needed to be able to run code from within a page, this plugin has worked well for that so far.

In the short term I need to get some sort search functionality going again. Perhaps I’ll just stick with using Google for that. I’m hoping that tagging my posts will be more useful than using the categories support in WP.

2

IE Specific CSS

Posted on May 25th, 2005 / 2 Comments »
Tags: , ,

I was working on some site design and needed to tweak it for IE (IE dev team, hello, is this thing on? Better CSS support please) in order to make look more along the lines of what I had intended (which is the way that FireFox and Safari display it). So off to Google I went hoping to find some way to easy include CSS only for IE browsers. Low and behold it is amazingly easy! I first came across this example which lead me to the conditional comments site. All I can say is, wow! It works, it’s simple, doesn’t feel like a complete crazy hack (although some might say the mere fact that this has to be done at all is a hack) and it only took me a minute or two to put it all together.

It is a shame that this has to be done, but at least there is an easy way to do it. Here’s an example of including CSS that will only be used by Internet Explorer (IE):


<!--[if IE]>
<link rel="stylesheet" type="text/css" media="screen"
href="/ie-style.css" />
<![endif]-->

It seems that you could include any sort of HTML (or JavaScript?) between these conditional comments.

Ads