Tilted Forum Project Discussion Community

Tilted Forum Project Discussion Community (https://thetfp.com/tfp/)
-   Tilted Technology (https://thetfp.com/tfp/tilted-technology/)
-   -   Having trouble getting a background pic in CSS (https://thetfp.com/tfp/tilted-technology/60843-having-trouble-getting-background-pic-css.html)

BoCo 06-29-2004 08:12 AM

Having trouble getting a background pic in CSS
 
This is what I have for the body:


body {
background:#000;
margin:0;
padding:40px 20px;
font:x-small "Trebuchet MS",Trebuchet,Verdana,Sans-Serif;
text-align:center;
color:#ccc;
font-size/* */:/**/small;
font-size: /**/small;
}


How do I re-write it so it'll display a background image?

sargorn 06-29-2004 09:32 AM

background-image: url(./img.png);

HTH.

David M

BoCo 06-29-2004 09:33 AM

Cool, thanks.

soopafreek 07-05-2004 06:17 PM

alternatively, you could just make your css look like this (shortcut)...

body {
background:#000 url(image.png);
}

you can also add the repeat values, positioning values, and other things.


All times are GMT -8. The time now is 01:48 AM.

Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
Search Engine Optimization by vBSEO 3.6.0 PL2
© 2002-2012 Tilted Forum Project


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76