View Full Version : okay I don't know if this goes here but please HELP!!!!


Anime Goddess
03-11-2003, 08:39 PM
Okay if you go here to this link you will see a layout http://www.kawaiikiwi.org/soulair/misc/mixed/index.html

Now that is how I want to do my layout......I got everything up but the thing is though that I can't write anything and I can't seem to change the colour of the font?? I have no idea why it doesn't work for me >< but if anyone could help I would apperciate it a lot!!

Thanx

epolady
03-11-2003, 08:58 PM
Well, can you post a link to the problem page or even the coding that you're using? It'd help a great deal.

Anime Goddess
03-12-2003, 02:11 AM
Sorry about that I should of did that in the begining >.<

Okay here is what I am using.........

<HTML>
<HEAD>
<TITLE> </TITLE>
<link rel="stylesheet" href="css.css" type="text/css">
</HEAD>
<BODY background="bg.jpg"><div style="position: absolute; top: 265; left: 20; width: 432; font-size: 8pt;"><p class=head>Information</p>
<p class=head>Anime</p>
<p class=head>Credits + Extras</p>
<p align="left">blah blah
<p>&nbsp;</p>
<p>&nbsp;


</div>
<div style="position: absolute; top: 402; left: 458; width: 263; font-size: 8pt;"><p class=head>Your
COntent Here</p>- link<br>- link<br>- link<br>- link<br>- link<br>- link<br><p class=head>Your
COntent Here</p>- link<br>- link<br>- link<br>- link<br>- link<br>- link<br><p class=head>Your
COntent Here</p>- link<br>- link<br>- link<br>- link<br>- link<br>- link<br>





</div>

<!-- Begin Table -->
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="0" WIDTH="800" HEIGHT="500">

<TR>
<TD ROWSPAN="1" COLSPAN="1" WIDTH="800" HEIGHT="90">
<IMG SRC="http://www.geocities.com/animefrenzie/web1.jpg" width="800" height="90" BORDER="0"></TD>
</TR>

<TR>
<TD ROWSPAN="1" COLSPAN="1" WIDTH="800" HEIGHT="104">
<IMG SRC="http://www.geocities.com/animefrenzie/web2.jpg" WIDTH="800" HEIGHT="104" BORDER="0"></TD>
</TR>

<TR>
<TD ROWSPAN="1" COLSPAN="1" WIDTH="800" HEIGHT="101">
<IMG NAME="blue2" SRC="http://www.geocities.com/animefrenzie/web3.jpg" WIDTH="800" HEIGHT="101" BORDER="0"></TD>
</TR>

<TR>
<TD ROWSPAN="1" COLSPAN="1" WIDTH="800" HEIGHT="99">
<IMG NAME="blue3" SRC="http://www.geocities.com/animefrenzie/web4.jpg" width="800" height="99" BORDER="0"></TD>
</TR>

<TR>
<TD ROWSPAN="1" COLSPAN="1" WIDTH="800" HEIGHT="106">
<IMG NAME="blue4" SRC="http://www.geocities.com/animefrenzie/web5.jpg" width="800" height="106" BORDER="0"></TD>
</TR>


</TABLE>
<!-- End Table -->

</BODY>
</HTML>


please tell me what I am missing if there is anything I am missing or if I am doing something wrong.

Thank you ^_^

epolady
03-12-2003, 02:16 AM
You should be able to change the color of the text, etc in either css.css or in the div layer
i.e

<div style="position: absolute; top: 402; left: 458; width: 263; font-size: 8pt; color: #000000;">

Where are you trying to write your text at?

Anime Goddess
03-12-2003, 03:08 AM
Oh...sorry. You see where I have Information well it is suppose to be like this...
<p class=head>Updates</p>
blah blah blahh blah blah blah blah blah blah blah blah


<p>&nbsp;</p>
<p>&nbsp;

and that is where I am writing my text.

Anime Goddess
03-12-2003, 03:40 AM
Well I got my website up finally ^^ thanx to your help ^_^ But now I am just woundering something. First if you don't mind you can go to my site here

www.animefrenzie.cjb.net

You see my layout. Well see I want to make the background black....but how do I do that??? And Thank you so much ^^

Anime Goddess
03-12-2003, 04:08 AM
Sorry for posting again it is just that I never realized this untill I actually tried it ><
Okay when I click on one of my links I found out that you get stuck in that page >< Now what would I do to fix that problem and where would I write it...
And also I was woundering if I wanted to do this
<STYLE>
A:link {text-decoration: none; cursor: ne-resize}
A:visited {text-decoration: none; cursor: ne-resize}
A:active {text-decoration: none; cursor: ne-resize}
A:hover {text-decoration: none; color: #EFC999; cursor: ne-resize}
</STYLE>

where would I put this it cause I have tried and it won't go??

epolady
03-12-2003, 04:22 AM
To make the bg black in your CSS put

background-color: #000000;

in the Body

er.... you can change the font size/color/etc, in the CSS by using the tutorials on this site.

Anime Goddess
03-12-2003, 04:54 AM
Okay I put "background-color: #000000" into my CSS code and this is what it does if you go to my site

www.animefrenzie.cjb.net

Now is that what that code does cause I wanted the whole thing...is that even possible :S
Cause right now it is only around the text and I kinda want the whole background black.......>.<

epolady
03-12-2003, 05:22 AM
You need to either delete

<link rel="stylesheet" href="css.css" type="text/css">

or create a CSS sheet and upload it. I thought you had one up there, but I can't find it.

on your HTML page put

<style type="text/css">
body{
background-color: #000000;
}
</style>

then the whole background will be black. Please (!!) look at the CSS Tutorial (http://www.lissaexplains.com/css.shtml) on this page.