when my list off product groups is displayed on screen. using jpg icons. I want to change this so that they are rollover images. i have searched through this on the foums but have had no luck . I am using a custom built page and have not changed anything except act_primary page. any help would be great or a point into the right direction. thanks
Announcement
Collapse
No announcement yet.
product group list - re rollovers
Collapse
X
-
The table for placing the section image and name is held in the Act_SectionLine.html template. You can rearrange the table cells to put the section name under the image.
The images are assigned in the Properties tab using the dropdown list to specify SECTIONIMAGE and SECTIONIMAGE2.Ben Popplestone
Ecommerce website software
Comment
-
right got the swap over images to work but not sure what to do bout the group name:
this is how my act_sectionline.html looks at current.
Code:<!-- SectionLine HTML begin --> <!-- Insert HTML for the beginning of a section title --> <DIV ALIGN="LEFT"> <TABLE BORDER="0" CELLSPACING="0" CELLPADDING="10"> <TR> <TD ALIGN="LEFT" VALIGN="TOP"> <A HREF="NETQUOTEVAR:SECTIONLINK"> <img src="CUSTOMVAR:SECTIONIMAGE"alt="NETQUOTEVAR:SECTIONNAME" onMouseOver="src='CUSTOMVAR:SECTIONIMAGE2' " onMouseOut="src='CUSTOMVAR:SECTIONIMAGE' " border="0"> </A> </TD> <TD ALIGN="LEFT" VALIGN="MIDDLE"> <A HREF="NETQUOTEVAR:SECTIONLINK"><B>NETQUOTEVAR:SECTIONNAME</B></A> <br><span class="actxsmall">NETQUOTEVAR:SECTIONTEXT</span> </TD> </TR> </TABLE> </DIV> NETQUOTEVAR:NEXT <!-- Insert HTML for the end of a section title --> <!-- SectionLine HTML end -->
Comment
-
Yes. (Tip: it's generally better to hold all images in your site directory for back-up purposes, and also that way, you only have to enter the image names in the field.) Also, be sure to tick 'Use as Customvar' and 'Is file name' as mentioned in the kb article.Ben Popplestone
Ecommerce website software
Comment
-
It may not be exactly what you want, but very simply you could replace ...Code:</TD> <TD ALIGN="LEFT" VALIGN="MIDDLE">
Code:</TD> </TR> <TR> <TD ALIGN="LEFT" VALIGN="MIDDLE">
Ben Popplestone
Ecommerce website software
Comment
Comment