• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Check out my website

Well done for a non-professional site. I like the simplicity and cleanliness. I see you used an area map for the links... was that the easy way out ? 😀
 
Originally posted by: rh71
Well done for a non-professional site. I like the simplicity and cleanliness. I see you used an area map for the links... was that the easy way out ? 😀

Thanks 🙂 I was thinking about using flash for the links or making individual images but I jusdt got very lay - it seems to work find though!
 
I like the My Words page.

You need to make more of the items on that sheet of paper link up to other pages 😉
 
I guess you're lucky that RippleHost recently increased bandwidth for all it's customers to 2GB instead of 1GB 🙂
 
Originally posted by: RossMAN
I guess you're lucky that RippleHost recently increased bandwidth for all it's customers to 2GB instead of 1GB 🙂

haha, very glad! I forgot how much I paid them but it's been worth every penny... Too bad the mail server's a little flakey at times though...
 
Originally posted by: freedomsbeat212
Originally posted by: igowerf
It doesn't display correctly in Firebird for me...

Crap.. I'll download firebird tonight to test it out.. works fine on opera/safari and IE.... wonder why/how it's screwing up...
Hint: Frontpage is an M$ product. 😉

 
Originally posted by: rh71
Originally posted by: freedomsbeat212
Originally posted by: igowerf
It doesn't display correctly in Firebird for me...

Crap.. I'll download firebird tonight to test it out.. works fine on opera/safari and IE.... wonder why/how it's screwing up...
Hint: Frontpage is an M$ product. 😉

True, but I'm too lazy to code by hand 🙂 Guess I'll have to download a trial version of DreamWeaver as well...
 
Originally posted by: freedomsbeat212
Originally posted by: igowerf
It doesn't display correctly in Firebird for me...

Crap.. I'll download firebird tonight to test it out.. works fine on opera/safari and IE.... wonder why/how it's screwing up...

According to the W3 validator:

Fatal Error: No DOCTYPE specified!

I could not parse this document, because it does not include a DOCTYPE Declaration. A DOCTYPE Declaration is mandatory for most current markup languages and without such a declaration it is impossible to validate this document.

You should place a DOCTYPE declaration as the very first thing in your HTML document. For example, for a typical XHTML 1.0 document:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<title>Title</title>
</head>

<body>
<!-- ... body of document ... -->
</body>
</html>


For XML documents, you may also wish to include an "XML Declaration" even before the DOCTYPE Declaration, but this is not well supported in older browsers. More information about this can be found in the XHTML 1.0 Recommendation.

The W3C QA Activity maintains a List of Valid Doctypes that you can choose from, and the WDG maintains a document on "Choosing a DOCTYPE".
 
Back
Top