illusionist
04-18-2002, 01:31 PM
how can i get my logo pasted on the background of my site just like audiogalaxy......any ideas?????
![]() | View Full Version : logo pasted on the background like audiogalaxy?? illusionist 04-18-2002, 01:31 PM how can i get my logo pasted on the background of my site just like audiogalaxy......any ideas????? Elena 04-18-2002, 01:41 PM Place your information in a table, and make the table have a background... audiogalaxy (I assume audiogalaxy.com) has this in their code<table cellpadding=0 cellspacing=0 border=0 align=center valign="top" background=/images/backgrounds/front.jpg>You could also try making the background static with code like this <body background="backgroundimage.jpg" bgproperties="fixed"> illusionist 04-18-2002, 01:47 PM thanx i did it.any ideas how to give it a faded effect? Justice 04-18-2002, 03:41 PM photoshop Elena 04-18-2002, 04:29 PM The easy way? Edit your background image in photoshop. Create a second layer for the image, fill the image with the tint color you'd like, and then adjust the opacity. :) If you don't have photoshop, you could also use a style sheet... something like:<html> <head> <style type="text/css"> table {filter: alpha(opacity=80); } </style> </head> <body>or<html> <head> <style type="text/css"> body {filter: alpha(opacity=80); } </style> </head> <body background="backgroundimage.jpg">In both instances, the color selected for the background will be used as the tint... so if you have <body bgcolor=#FF0000>the tint will appear pinkish because FF0000 is red. If you have more than one table, and only want one table to have the tint.. you'll need to add a class. In the first style I put, you would change table to table.tint and then in your table tag you would add<table cellpadding=0 cellspacing=0 border=0 align=center valign="top" background=/images/backgrounds/front.jpg class=tint>... something like that should work. :D illusionist 04-19-2002, 07:17 AM thanx. |