Hi, I'm learning how to create a web page on my own...I'm using dreamweaver, how do I upload a background image for my page? Thanks for the help you can give...cheers!
For online purposes or for FTP, upload your image together with your html files then use CSS to call your image
is this what you need? <html> <head> <title>New Page 1</title> <style type="text/css" media="screen"> body { background-image: url('path to your image file here'); } </style> </head> <body> ........... </body> </html>
thank you for your responses boyponga and costin_trifan....what i need to know is how to do it with dreamweaver...thanks for your help...
this can be done in dreamweaver... just in code view. i'd recommend you learn html and css aswell as just learning dreamweaver as it's a hell of a lot better when you actually understand what dreamweaver is doing. also dreamweaver can also output unneccessary code so learning html can help you clean it up and validate it etc
Thank you Mr Blonde, i finally figured it out on my own....i'll try learning html and css when i have free time...thanks a bunch!