Click to See Complete Forum and Search --> : The CrashSite


Mayham
06-04-2006, 08:31 PM
[DUTCH WEBSITE]

My 1st HTML website :

http://users.telenet.be/crashsite

the tree
06-05-2006, 04:18 AM
- Can't say I like the overlapping borders.
- Try to clear up your Validation errors (http://validator.w3.org/check?uri=http%3A%2F%2Fusers.telenet.be%2Fcrashsite%2F&charset=iso-8859-1&doctype=Inline&verbose=1).

ChiefNX
06-05-2006, 05:27 AM
In Firefox it looks okay - just a bit bland. Try getting some inspiration from websites with good designs.

In IE the text appears huge and everything looks a bit weird. These things happen when you're new to HTML though.

Above all, it's probably your CSS that needs looking at - there are lots of bits that don't quite align properly and that doesn't format too well. Don't worry, you'll get there :D

Mayham
06-05-2006, 11:24 AM
Anyone who can edit my Source code ?
because i don't understand everything :s
here in IE my letters are not big they are normal :s
only my Frames don't work properly
:s

Anyone that is willing to help me ?

stacywacy
06-05-2006, 06:11 PM
Your site is very simplistic. I like simplicity. You might try to go with adding more color to your site. Also, add some pictures and more content is needed. There is something erratic about the layout of your site. Maybe center the middle box on the page instead of having it closer to the left-side. Try giving the top box a different color to see how it looks - a colorful color like a variation of orange or green, or something..

Also,

<1> You have the <BODY BGCOLOR="#CFCFCF"> tag in the <head> tag. Put the <body> tag after the </head> tag.

Also, you can specify the background color in your CSS body {background: #CFCFCF;}

<2> It seems like a lot of your validation errors are coming from your using outdated HTML tags. <font> and <center> for example.

Also, some other things I've noticed:
You might want to change all your <BR> into <br>. I think HTML strict requires them to be lowercase, I'm not really sure because I haven't used HTML in a while..

You have some tags like this <p></a></p> Is there any particular reason why? Maybe try <p>&nbsp;</p> instead.

<P><h2>Welkom @ The Crash-Site !</h2></P> You can't nest tags like that. Try using only <p> or the <h2> tag, but not both.

<FONT COLOR="#0000ff">Profiel</FONT> A more compliant way would be to use the <span> tag. I.E. <span style="color: #0000ff;">Profiel</span> that will also get rid of some errors.
.

Mayham
06-05-2006, 06:30 PM
like i said i did it al in noteblock (kladblok)
so i know there are errors :s
problem is that i don't know enoufgh to fix them

don't understand those errorbots

i wonna make a Fotoalbum but don't know how :s

if their is anyone that could take some time to help me edit my website i would be very thankfull :)

u can email me if u have time :)

Green-Beast
06-05-2006, 06:42 PM
To fix the font-size issue in IE someone brought up, use font-size : 100%; instead of font-size : 1em;

You can use em after the initial declaration, but starting with em instead of % will trigger that perhaps not so famous IE font-size bug.

Otherwise... I agree with the comments by others.

Keep up the good work. At least you didn't size your fonts in px, or wrose pt :)

Mike

Mayham
06-05-2006, 06:46 PM
u mean this :

font-size:1em;
font-family:Georgia, Arial, sans-serif;
}

#head {
border:1px solid #000000;
margin:5px;
padding:5px;

Mayham
06-05-2006, 06:51 PM
just created this : <link rel="stylesheet" type="text/css" href="stijl.css" />

maybe frames are fixed now ?

is it possible to put left collomn & right collomn in CSS to ?
so i don't need to change those links on every page ?

greetings

ps : how ?

Green-Beast
06-05-2006, 07:58 PM
u mean this :

font-size:1em;
font-family:Georgia, Arial, sans-serif;
}

#head {
border:1px solid #000000;
margin:5px;
padding:5px;

Yes, on the body element:

body {
font-size : 1em;
font-family: Georgia, Arial, sans-serif;
}

Change to this:

body {
font-size : 100%;
font-family: Georgia, Arial, sans-serif;
}

And that'll keep the resizing in IE closer to other browsers.

Typically I'll have some sort of container or wrapper where I really set the size and use 100.1% on body to correct irregular rounding in Opera. Like this:

body {
font-size : 100.1%;
}

#wrapper {
font-size : 0.9em;
}


On the page the markup would be like this:

<body>
<div id="wrapper">


Your CSS is invalid at the moment though.

Mike

Mayham
06-10-2006, 07:47 AM
Fixed:

- Color
- More Stuff (Link darts ,Linkpartners , Games,smilingfaces (still taking pictures)
- got almost 800 visitors on 8 days
- Translated to english


Still looking for Banner exchange + site partners :)




Greetz