So for reasons unknown to me this portion of code wont run correctly...
this is the css
/*DIV TO HOLD THE GRADIENT*/
.div1{
background-image:
url('Client/images/Icons/BlueGradient.png');
background-repeat:repeat-x;
}
this is the html
<!-- BEGINNING OF TABLE 10-->
<table class=table10; id="Links">
<tbody>
<tr class=table10>
<td class=table10>
<div class=div1>
<!-- THIS IS WHERE YOU EDIT THE DATE BELOW -->
<span class="text2">
<!--TYPE IN BETWEEN THESE COMMENTS!!!!!-->
UPDATE//12/6/2010
<!--TYPE IN BETWEEN THESE COMMENTS!!!!!-->
</span><br>
<!-- DATE IS ABOVE THIS -->
<!-- THIS IS WHERE YOU EDIT THE ACTUAL NEWS CONTENT BELOW -->
<span class="text3">
<!--TYPE IN BETWEEN THESE COMMENTS!!!!!-->
blah blah blah
<!--TYPE IN BETWEEN THESE COMMENTS!!!!!-->
</span>
<!-- NEWS CONTENT IS ABOVE THIS-->
</div>
</td>
</tr>
</tbody>
</table>
<!--END OF TABLE 10-->
that is a small section of the site that im trying to add a colored gradient to and for some reason it isnt letting me set and repeat the .png image. Any ideas as to what the problem could be?
this is the css
/*DIV TO HOLD THE GRADIENT*/
.div1{
background-image:
url('Client/images/Icons/BlueGradient.png');
background-repeat:repeat-x;
}
this is the html
<!-- BEGINNING OF TABLE 10-->
<table class=table10; id="Links">
<tbody>
<tr class=table10>
<td class=table10>
<div class=div1>
<!-- THIS IS WHERE YOU EDIT THE DATE BELOW -->
<span class="text2">
<!--TYPE IN BETWEEN THESE COMMENTS!!!!!-->
UPDATE//12/6/2010
<!--TYPE IN BETWEEN THESE COMMENTS!!!!!-->
</span><br>
<!-- DATE IS ABOVE THIS -->
<!-- THIS IS WHERE YOU EDIT THE ACTUAL NEWS CONTENT BELOW -->
<span class="text3">
<!--TYPE IN BETWEEN THESE COMMENTS!!!!!-->
blah blah blah
<!--TYPE IN BETWEEN THESE COMMENTS!!!!!-->
</span>
<!-- NEWS CONTENT IS ABOVE THIS-->
</div>
</td>
</tr>
</tbody>
</table>
<!--END OF TABLE 10-->
that is a small section of the site that im trying to add a colored gradient to and for some reason it isnt letting me set and repeat the .png image. Any ideas as to what the problem could be?