a HTML problem ^^ | |
NotSoLittleCaesar - Student ![]() |
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 |
Strider - Student ![]() |
I like that bg image, its nice man ![]() _______________ .: Proud Padawan of Dane |
NotSoLittleCaesar - Student ![]() |
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
|
Aron - Retired ![]() |
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. |
El Vee For - Student ![]() |
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.” |
Jaiko D'Kana - Student ![]() |
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) |
Aron - Retired ![]() |
use CSS! <style> .yourStyle {background-image: url('yourimage.jpg');} </style> <div class="yourStyle">text to appear over image</div> |
Login and add your comment! |