Monday, August 18, 2008

Website Update

Make sure to check the latest version of my website at www.benhoffmanracing.com
The newest updates include a gallery (more pics coming soon), and a completely redesigned layout with all-new sections. The most recent results, photos, and race schedule will be added shortly. Input is welcome.

3 comments:

Barrett said...

Hey, the site looks pretty good! The fonts all show up as Times New Roman for me (probably because I'm on Windows), but that should be an easy fix.

If you're familiar with css, you can edit the code for your page directly -- or there might be a way to specify multiple fonts for a particular style in whatever program you used to make the site. Anyway, here's what a couple of the style elements on your pages look like now:

.style7 {font-family: "Gill Sans"}
.style10 {
font-family: "Bank Gothic";
color: #999999;
font-size: 12px;
}

And here are some changes I recommend:

.style7 {
font-family:"Gill Sans", Trebuchet MS, Helvetica, sans-serif;
}
.style10 {
color:#999999;
font-family:"Bank Gothic", Tahoma, Arial, sans-serif;
font-size:12px;
}

Basically it's just adding 2nd and 3rd options for the font for people who don't have the first font installed on their computer.

Shoot me an email if you have any questions -- hope that helps!

Barrett

Barrett said...

I am such a geek :)

Deewaah said...

Barrett,
thanks for the advice, quite helpful. I'll make the change soon. Dave