Question
image bg
hey everyone.
I am trying to figure out how to add a image background to my php script but i can't seem to get it to work.
this is my php script code :
<?php # Script 3.4 - index.php
$page_title = 'Welcome to Therainbowpride!';
include ('./includes/header.html');
?>
<h1 id="mainhead">Big Header</h1>
<p>This is where you'll put the main page content.This is where you'll put the main page content.</p>
<p>This is where you'll put the main page content.This is where you'll put the main page content.</p>
<h2>Subheader</h2>
<p>This is where you'll put the main page content.This is where you'll put the main page content.</p><br />
<p>This is where you'll put the main page content.This is where you'll put the main page content.</p>
<?php
include ('./includes/footer.html');
?>
Can someone give me a hand, i trying by placing this before the <?php # Script 3.4 - index.php :
<STYLE type=text/css>
BODY
{
background-image:url(" http://i68.photobucket.com/albums/i15/luishicks/goodhome00010001.jpg");
background-attachment:fixed;
background-repeat:no-repeat;
background-position:top;
}
</STYLE>
but it didnt work.
thanks everyone
I am trying to figure out how to add a image background to my php script but i can't seem to get it to work.
this is my php script code :
<?php # Script 3.4 - index.php
$page_title = 'Welcome to Therainbowpride!';
include ('./includes/header.html');
?>
<h1 id="mainhead">Big Header</h1>
<p>This is where you'll put the main page content.This is where you'll put the main page content.</p>
<p>This is where you'll put the main page content.This is where you'll put the main page content.</p>
<h2>Subheader</h2>
<p>This is where you'll put the main page content.This is where you'll put the main page content.</p><br />
<p>This is where you'll put the main page content.This is where you'll put the main page content.</p>
<?php
include ('./includes/footer.html');
?>
Can someone give me a hand, i trying by placing this before the <?php # Script 3.4 - index.php :
<STYLE type=text/css>
BODY
{
background-image:url(" http://i68.photobucket.com/albums/i15/luishicks/goodhome00010001.jpg");
background-attachment:fixed;
background-repeat:no-repeat;
background-position:top;
}
</STYLE>
but it didnt work.
thanks everyone
