doofgoblin
Joined: 01/21/02
Location: charlottesville, va
Posts: 191
|
|
please help test my site
Friday, October 6, 2006 at 9:02 AM
|
Quote
Top Bottom
|
heyas,
so the last time I came close to launching the new version of doofgoblin.com ya'll were kindly firm enough to steer me away from frames. I re-did the new design without the frames and added some css tweaks and I think I'm ready to launch it now.
would you mind playing around on it for a few and letting me know if anything jumps out at you as being wrong or problematic?
it's here: uh, testing.
on the images page, you should see photo info/credits appear as you hover. same goes for the discography page. workin for you?
oh yeah, by comparison, this is the current site.
many thanks!
|
|
|
Sonic Wallpaper
Joined: 05/22/01
Location: San Diego, CA
Posts: 1266
|
|
RE: please help test my site
Friday, October 6, 2006 at 9:13 AM
|
Quote
Top Bottom
|
just 3 things:
1. The doctype is missing - it should be the first element. There are several doctypes, but I think for your situation, this one will work just fine:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2. Within the body, you begin with a font tag, but do not close it. The easiest thing to do, is put a </font> at the end of your body section. Ideally, you'd want to use a <div> with CSS style elements, but you'll be fine w/ the font tag
3. the image needs an alt="" attribute added - so you take this:
<img src="http://doofgoblin.ivdt.net/demokit/headbanner.jpg">
and make it this:
<img src="http://doofgoblin.ivdt.net/demokit/headbanner.jpg" alt="doofgoblin" />
all images should have an alt="" attribute, you can leave the contents blank.
===========
Fixing those 3 items on all your pages should fix most, if not all the errors I'm seeing. Try it out then post back, and I can check it again.
|
|
|
(((stereofect)))
Joined: 09/02/01
Location: Ontario, Canada
Posts: 1333
|
|
RE: please help test my site
Friday, October 6, 2006 at 9:16 AM
|
Quote
Top Bottom
|
Looks great to me. Links and all worked fine.
I use IEv6 (DSL connection) on a Win98 machine, so no problem here.
βAny intelligent fool can make things bigger, more complex, and more violent. It takes a touch of genius β and a lot of courage β to move in the opposite direction.β Albert Einstein
|
|
|
doofgoblin
Joined: 01/21/02
Location: charlottesville, va
Posts: 191
|
|
RE: please help test my site
Friday, October 6, 2006 at 9:20 AM
|
Quote
Top Bottom
|
Thanks man.
A few questions though:
the doctype code...does that come after the first <html> tag? can I just cut/paste what you put there, or is that ! in there for comment?
and, when you typed:
Quote:<img src="http://doofgoblin.ivdt.net/demokit/headbanner.jpg" alt="doofgoblin" />
is that final slash something I should include? or again, is that just to comment in your post?
thanks!! I'm so code unsavvy!
|
|
|
Sonic Wallpaper
Joined: 05/22/01
Location: San Diego, CA
Posts: 1266
|
|
RE: please help test my site
Friday, October 6, 2006 at 10:01 AM
|
Quote
Top Bottom
|
doctype is THE first element - it sets the stage for what kind of document it is
yes, the trailing slash should be there - it doesn't have to be - but that's how xHTML is now down.
html slightly mutated to xhtml - the basic difference, is when you have a tag that is a single element - meaning, no ending tag, it will need an end slash to 'close it off'
so this <br> becomes this <br /> and <p> should always have an end tag </p>
|
|
|
doofgoblin
Joined: 01/21/02
Location: charlottesville, va
Posts: 191
|
|
RE: please help test my site
Friday, October 6, 2006 at 10:40 AM
|
Quote
Top Bottom
|
wicked. okay, I've made the edits that you've suggested.
thanks again!
|
|
|
Sonic Wallpaper
Joined: 05/22/01
Location: San Diego, CA
Posts: 1266
|
|
RE: please help test my site
Friday, October 6, 2006 at 10:54 AM
|
Quote
Top Bottom
|
I'd just get rid of the font tags on all your pages - and put this in the <style> section:
body {font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px }
also - you should have a <head></head> in there - starting after <html> and ending before <body>
right now your font tag is opening, with a p tag inside, which causes an xhtml validation error.
next - this page: http://doofgoblin.ivdt.net/t_discog.html
has a <div id="links"> near the top - but no end </div> on the page
actually - that's on a few pages
|
|
|
doofgoblin
Joined: 01/21/02
Location: charlottesville, va
Posts: 191
|
|
RE: please help test my site
Friday, October 6, 2006 at 11:21 AM
|
Quote
Top Bottom
|
cool cool, have made those changes!
I'm beginning to feel so clean...
|
|
|
Multi-Panel
Joined: 09/23/01
Posts: 217
|
|
RE: please help test my site
Saturday, October 7, 2006 at 2:05 AM
|
Quote
Top Bottom
|
i love it. great & simple.. especially like the discography page.
|
|
|
A Bit Crusher
Joined: 01/26/02
Location: Tilburg
Posts: 1794
|
|
RE: please help test my site
Thursday, October 12, 2006 at 11:13 AM
|
Quote
Top Bottom
|
Works good over here....
|
|
|
A Bit Crusher
Joined: 01/26/02
Location: Tilburg
Posts: 1794
|
|
RE: please help test my site
Thursday, October 12, 2006 at 11:17 AM
|
Quote
Top Bottom
|
Oh...I'm currently on WIN XP PRO & IE...eh...don't know what the exact version is...but it must be one of the latest, I guess....
|
|
|
doofgoblin
Joined: 01/21/02
Location: charlottesville, va
Posts: 191
|
|
RE: please help test my site
Thursday, October 12, 2006 at 11:33 AM
|
Quote
Top Bottom
|
thanks dudes.
I'm getting ready to switch it on. Just been holding out until I finish encoding/uploading a couple of new video clips from my last show. I'd like to you know, launch it with some new content and all!
tomorrow's the day I think.
|
|
|
Sonic Wallpaper
Joined: 05/22/01
Location: San Diego, CA
Posts: 1266
|
|
RE: please help test my site
Thursday, October 12, 2006 at 12:49 PM
|
Quote
Top Bottom
|
<style type="text/css"> </style>
the above code needs to be inside of the head - see below for the general structure of an html doc:
<html>
<head>
<style type="text/css"> </style>
</head>
<body>
</body> </html>
|
|
|
doofgoblin
Joined: 01/21/02
Location: charlottesville, va
Posts: 191
|
|
RE: please help test my site
Thursday, October 12, 2006 at 1:34 PM
|
Quote
Top Bottom
|
thanks Gideon! done.
|
|
|
doofgoblin
Joined: 01/21/02
Location: charlottesville, va
Posts: 191
|
|
RE: please help test my site
Monday, October 16, 2006 at 6:57 AM
|
Quote
Top Bottom
|
okay, the new site is live.
thanks for your help!
|
|
|
mr_cocktail_1
Joined: 10/23/06
Posts: 2
|
|
RE: please help test my site
Sunday, October 29, 2006 at 11:27 AM
|
Quote
Top Bottom
|
(((stereofect))) wrote:Looks great to me. Links and all worked fine. I use IEv6 (DSL connection) on a Win98 machine, so no problem here.  i see im not alone on windows 98 great for home studios with midiinterfaces and guitar trackers mixers ect also 98 comes with java built in bill gates made xp cause lost the rights to java in court batle must say tho takes lot less memory with useless junk xp has and some the best stuidios ive seen run on 98 my lap tops xp tho xbox is liunex
|
|
|
Danny K
Joined: 08/15/01
Posts: 226
|
|
RE: please help test my site
Sunday, October 29, 2006 at 11:36 AM
|
Quote
Top Bottom
|
Its a shame Win98 hasn't got any full stops.
|
|
|
doofgoblin
Joined: 01/21/02
Location: charlottesville, va
Posts: 191
|
|
RE: please help test my site
Monday, October 30, 2006 at 5:16 AM
|
Quote
Top Bottom
|
yeah mr. cocktail (and stereofect), win 98!
my main production machine is xp pro, but I still use my old 466 desktop running win 98 for multitracking. It's the same machine I've had forever, it was my second upgrade. very sturdy and reliable, no problems no matter how much I've beaten on it (and dropped it, and spilled on it) over the past 8 years
|
|
|