I'm not a whiz with CSS but am learning! However come up with a problem.
I'm trying to create a thin border around our product image.
Product Image Layout has:
<actinic:block if="%3cactinic%3avariable%20name%3d%22IsPopUpDisplayedByImage%22%20%2f%3e">
<actinic:block if="%3cactinic%3avariable%20name%3d%22ExtendedInformationType%22%20%2f%3e%20%3d%3d%20%22Opens%20in%20a%20Pop%2dUp%20Window%22">
<a href="javascript:ShowPopUp('<actinic:variable name=ExtendedInfoPageEncoded />',<actinic:variable name="ExtInfoWindowWidth" />,<actinic:variable name="ExtInfoWindowHeight" />);">
</actinic:block>
<actinic:block if="%3cactinic%3avariable%20name%3d%22ExtendedInformationType%22%20%2f%3e%20%3d%3d%20%22Opens%20in%20the%20Same%20Window%22" >
<a href="<actinic:variable name="ExtendedInfoPageName" />">
</actinic:block>
</actinic:block>
<!-- ProductImage HTML begin -->
<table class="image_border" width="250" height="250" border="0" cellpadding="0" cellspacing="0" border color="2b80c0">
<tr>
<td align="center" valign="middle"><IMG SRC="<actinic:variable name="ProductImageFileName"/>"
ALT="<actinic:variable name="ProductName"/>"
BORDER=0
height="<actinic:variable name="ProductImageHeight"/>"
width="<actinic:variable name="ProductImageWidth"/>"
/></td>
</tr>
<tr>
<td align=center valign="bottom">
<actinic:block if="%3cactinic%3avariable%20name%3d%22IsPopUpDisplayedByImage%22%20%2f%3e">
</a>
</actinic:block>
<actinic:variable name="ExtendedInformationLinks" /></td>
</tr>
</table>
<!-- This file is used to build the product image markup. -->
<!-- ProductImage HTML end -->
the corresponding css is:
table.image_border {
border-left: thin solid #28b0c0;
border-right: thin solid #28b0c0;
border-top: thin solid #28b0c0;
border-bottom: thin solid #28b0c0
}
When I preview product I get no border at all around image and can't work out why.
Could someone point me in the right direction please.
TIA
Kathy
I'm trying to create a thin border around our product image.
Product Image Layout has:
<actinic:block if="%3cactinic%3avariable%20name%3d%22IsPopUpDisplayedByImage%22%20%2f%3e">
<actinic:block if="%3cactinic%3avariable%20name%3d%22ExtendedInformationType%22%20%2f%3e%20%3d%3d%20%22Opens%20in%20a%20Pop%2dUp%20Window%22">
<a href="javascript:ShowPopUp('<actinic:variable name=ExtendedInfoPageEncoded />',<actinic:variable name="ExtInfoWindowWidth" />,<actinic:variable name="ExtInfoWindowHeight" />);">
</actinic:block>
<actinic:block if="%3cactinic%3avariable%20name%3d%22ExtendedInformationType%22%20%2f%3e%20%3d%3d%20%22Opens%20in%20the%20Same%20Window%22" >
<a href="<actinic:variable name="ExtendedInfoPageName" />">
</actinic:block>
</actinic:block>
<!-- ProductImage HTML begin -->
<table class="image_border" width="250" height="250" border="0" cellpadding="0" cellspacing="0" border color="2b80c0">
<tr>
<td align="center" valign="middle"><IMG SRC="<actinic:variable name="ProductImageFileName"/>"
ALT="<actinic:variable name="ProductName"/>"
BORDER=0
height="<actinic:variable name="ProductImageHeight"/>"
width="<actinic:variable name="ProductImageWidth"/>"
/></td>
</tr>
<tr>
<td align=center valign="bottom">
<actinic:block if="%3cactinic%3avariable%20name%3d%22IsPopUpDisplayedByImage%22%20%2f%3e">
</a>
</actinic:block>
<actinic:variable name="ExtendedInformationLinks" /></td>
</tr>
</table>
<!-- This file is used to build the product image markup. -->
<!-- ProductImage HTML end -->
the corresponding css is:
table.image_border {
border-left: thin solid #28b0c0;
border-right: thin solid #28b0c0;
border-top: thin solid #28b0c0;
border-bottom: thin solid #28b0c0
}
When I preview product I get no border at all around image and can't work out why.
Could someone point me in the right direction please.
TIA
Kathy
Comment