Simpel Elseif kombineret med CSS
Hej,Alt afhængig af ID skal jeg have forskellig baggrund på en <td>:
**************************************
<% If ID = "99" Then %>
.content
{
width: 533px;
height: 310px;
background:url(/pictures/bg/c_news.jpg) no-repeat;
}
<% Elseif ID = "120" Then %>
.content
{
width: 533px;
height: 310px;
background:url(/pictures/bg/c_artist.jpg) no-repeat;
}
<% Elseif ID = "121" Then %>
.content
{
width: 533px;
height: 310px;
background:url(/pictures/bg/c_live.jpg) no-repeat;
}
<% Elseif ID = "122" or pID = "122" Then %>
.content
{
width: 533px;
height: 310px;
background:url(/pictures/bg/c_media.jpg) no-repeat;
}
<% Elseif ID = "123" Then %>
.content
{
width: 533px;
height: 310px;
background:url(/pictures/bg/c_shop.jpg) no-repeat;
}
<% Elseif ID = "128" Then %>
.content
{
width: 533px;
height: 310px;
background:url(/pictures/bg/c_book.jpg) no-repeat;
}
<% Else %>
.content
{
width: 533px;
height: 310px;
}
<% End If %>
*******************************
- så hvor er fejlen siden de forskellige billeder ikke bliver vist??
Jeg ved at billed-url er rigtig osv..