Hi,
I have a panel like this. I have an image control inside this panel that I have put as a background image for the panel using the style where I adjusting the z-indexes.
This works fine!
I have put a label and a hyperlink like this in the <table>. The label can be seen but not the hyperlink which is the problem. I have tried to put a z-index to the hyperlink but that does not help.
How is it possible to see the hyperlink here also ? Thanks!
.stretch2
{
position:relative;
width:998px;
height:35px;
top: 0px;
left: 0px;
}
.stretch2 img
{
position: absolute;
width:100%;
height:100%;
z-index:99;
top: 0px;
left: 0px;
}
.stretch2 span
{
position:relative;
text-align:center;
width:172px;
z-index: 100;
font-size: 1.2em;
color: #ffff66;
font-family: Arial, 'Microsoft Sans Serif';
top: 0px;
left: 3px;
}
<asp:Panel ID="Panel6" CssClass="stretch2" runat="server" Width="100%">
<asp:Image ID="Image16" runat="server" AlternateText="" ImageUrl="~/images/setImage.jpg"
ForeColor="Black" />
<table style
View Complete Post