When looking at your site I could only see your graphic, when trying to "drag" it I got the graphic only (where you have it hosted, the photobucket site)... (site background is black and so is your font)
When highlighting the page, I saw different frames, one of which is obviously the menu, but instead of seeing the menu, I basically only have the text of the URL of the menu script (http://simplythebest.net/scripts/DHTML_scripts/dhtml_script_100.html) ....
So my guess is your code is totally messed up... how did you make your pages, what program? (if you want you can send me the code in an email at moonwitch[at]skynet[dot]be) ok?
I'll try to look at your code from in FF

per frame.
CSS, is not too hard. It's your friend really.
eg.
CODE
/*CSS Style Doc*/
body {background-color : black;}
p {color : white;}
(I am not sure about p color LOL, but this *should* get your bg black and font white)
EDIT!!
I looked at
header.html which is part of a frameset already.
HTML
<html>
<head>
<title>~*~Wykked Dreamz~*~</title>
<frameset rows="100,*" border=0 frameborder=0 framespacing=0>
<frame src="http://www.wykked-dreamz.astahost.com/title.html" name="title" scrolling=no>
<frame src="http://www.wykked-dreamz.astahost.com/newsflash.html" name="newsflash" scrolling=no>
</frameset>
</head>
<body>
</body>
</html>
OK You've made a frameset within a frame and all that. Don't do that, it messes up more than you can fix... Believe me, plus it increases the change that your site will be looking odd in other resolutions.
There's no need to have a frameset in a frame

Just try this (also in your original code of title.html you had 2 <body> tags.. I also highly recommend to not use the marquee, it's hard on the eyes. So try this as header.html frame

(you can also upload this graphic to your astahost account

HTML
<html>
<head><title>~*~Wykked Dreamz~*~</title></head>
<body bgcolor="black">
<center>
<img src="http://img.photobucket.com/albums/v216/wykked_dreamz/January/WebPageHeader.gif"><br>
<font color="maroon">
<marquee behavior=scroll direction="left" scrollamount="4">Welcome to the guild! The website is now open and I hope that it meets your expectations. Be sure to check out everything, we've worked hard to make this website what it is.</marquee>
</center>
</body>
</html>
Next part
http://www.wykked-dreamz.astahost.com/menu.htmlThis is your code
HTML
<html>
<head>
<title>~*~Wykked Dreamz~*~</title>
</head>
<body>
<body bgcolor="black">
<b>http://simplythebest.net/scripts/DHTML_scripts/dhtml_script_100.html</b>
</body>
</html>
What you did, was simple making
http://simply.......script_100.html appear on your page as TEXT. So you don't have a menu. You need to follow directions on the page
http://simplythebest.net/scripts/DHTML_scr...script_100.html. I am not a fan of this method since it actually just slows down your page. But let's not overcomplicate this.
Next Act :
main.htmlHTML
<html>
<head>
<title>~*~Wykked Dreamz~*~</title>
</head>
<body>
<body bgcolor="black">
<b>Welcome</b>
</body>
</html>
Again you have <body> in there twice. Your font is also black, thus making it invisible. The correct syntax of the page you want is
HTML
<html>
<head><title> Wykked Dreamz</title></head>
<body bgcolor="black">
<font color="maroon"><b>welcome</b></font>
</body>
</html>
Now of course this is making it hard on yourself. Here's where CSS would greatly help you.
Just read up on this one
http://www.yourhtmlsource.com/stylesheets/
Comment/Reply (w/o sign-up)