The Jedi Academy. THE Place for Jedi training.
Forums
Content
The Academy
Learn
Communicate
Personal


Forums | General Discussion
a HTML problem ^^
Sep 06 2005 12:56pm

NotSoLittleCaesar
 - Student
NotSoLittleCaesar
ok. il make this short. im using Dreamweaver and html to make myself a small site. i have a image. i need to use as a background. (so i can type upon it ect) ive tried a few different codes. using the image url from the net And from my computer. anybody who can. please help. thanks

-tal
_______________
Quote:
I mostly agree oh Lord of the squeezy mop


  Login and add your comment!  
Comments
Sep 08 2005 12:57am

Strider
 - Student
 Strider

I like that bg image, its nice man :cool:
_______________
.: Proud Padawan of Dane

Sep 07 2005 05:46pm

NotSoLittleCaesar
 - Student
 NotSoLittleCaesar

HEHEH ^^ im not exactly pro with html. luckily my bro has multiple sites. so he managed to give me a hand and give me the newest dreamweaver. i prefer HTML atm. im not exaclty doing anything complex. i did this last night in bout half out. -45 min :
here

mayt wanna keep in mind id never used html before doing that ^^
_______________
Quote:
I mostly agree oh Lord of the squeezy mop


Sep 07 2005 06:23am

Aron
 - Retired
 Aron

I'd still say 'use CSS'.

It's better to learn it to the PROPER way than to stick with outdated methods.

edit: only understood now that you were talking about the actualy <body> background.

In that case, use something like this in your CSS sheet or style definition. That way you can simply use <body> without any class attributes and the image will show.

Quote:

BODY {
background-image: url(/images/foo.gif);
}


Click here for more info about the CSS background properties.


This comment was edited by Aron on Sep 07 2005 06:27am.

Sep 06 2005 06:56pm

El Vee For
 - Student
 El Vee For

umm, CSS sheets are kinda advanced, you sound like you need/want a simpler solution.

Open the page you want to have a background in DW

at the bottom of DreamWeaver you will see "Page Properties" in there is a browse button next to a field called "Background Image"

you should move your pic into a sub-folder under the folder that DW had you create for your site, this way when you upload DW has a better way to move your pic
_______________
“Arguing on the internet is like competing in the Special Olympics. Even if you win, you’re still retarded.”

Sep 06 2005 05:43pm

Jaiko D'Kana
 - Student
 Jaiko D'Kana

Tal if you want a little more detial about how to use CSS (cascading style sheets) give me a shout on msn. I'll give you a small walk through :)

-JaikoD'Kana-
_______________
The greatest discovery of my generation is that a human being can alter his life by altering his attitudes of mind. William James (1842 - 1910)

Sep 06 2005 05:05pm

Aron
 - Retired
 Aron

use CSS!

<style>
.yourStyle {background-image: url('yourimage.jpg');}
</style>

<div class="yourStyle">text to appear over image</div>

  Login and add your comment!