PDA

View Full Version : simple halp pls



Bibliophobia
04-02-2008, 06:51 PM
how do u stop tiled backgrounds being tiled

like u just want 1 image

Invent
04-02-2008, 06:53 PM
background-repeat: no-repeat;

Swearwolf
04-02-2008, 06:53 PM
css, sumit like:

body
{
background-repeat: no-repeat;
}

Bibliophobia
04-02-2008, 06:54 PM
cant you do it in html?

and if not how do you implement that css into html

Bibliophobia
04-02-2008, 06:59 PM
HALPPPPPPPPPPPP

Edited by opensourcehost (Forum Super Moderator): Please do not multiple post.

Independent
04-02-2008, 07:00 PM
<html>
<head>
<title>norepeat bg</title>
<style type="text/css">
<!--
body {background-image: url(images/bg1.gif); background-repeat: no-repeat;}
/* Setting the body tag with a background-image attribute
set to background-repeat: no-repeat; will only display the image one time
(repeat is the default setting) */
-->
</style>
</head>

<body>
<center>
Do you like ham waffles?
</center>
</body>
</html>

theJOSH
04-02-2008, 07:46 PM
cant you do it in html?

and if not how do you implement that css into html

Why double post within 5 mins?
Jeez..

Don't cry over it.

Bibliophobia
05-02-2008, 04:13 PM
FANX ALOT xxx

Forge
05-02-2008, 04:36 PM
style.css

body {
background-image: url('IMAGE URL');
background-repeat: no-repeat;
}

index.html or whatever your page is called

<head>
<link rel='stylesheet' href='style.css' />
</head>

P.s. you will get alot more help if you spell correctly :P or at least better :P

Want to hide these adverts? Register an account for free!