HomeHome Product Discus... Product Discus...SmithCartSmithCartHow to make the download link on confirmation page largerHow to make the download link on confirmation page larger
Previous
 
Next
New Post
3/15/2010 11:06 PM
 

How do I make the "Download" link on the confirmation page larger and add an image next to it. Is this easily changed?

On line 127 of the confirmstatus.asx page you will see the following line for the download link that is displayed when a user purchases an electronic product:

<a runat="server" target="_blank" id="lnkDownloadNow" visible="false">Download Now</a>

The download link is a hyperlink or html anchor tag. To make the download link larger you can increase the font size of your anchor tag styles in your skin.css or in the dnn portal.css. To edit the portal.css, go to your Site Settings and open the Stylesheet Editor and increase the font size for the anchor tag.

To add an image next to the download link on the page to make sure the user sees it after they purchase navigate to your /desktopmodules/smith.buynow folder and open up confirmstatus.ascx. On line 125 you will see the following lines of code:

<asp:TemplateColumn HeaderText="" ItemStyle-CssClass="SmithProdText" HeaderStyle-CssClass="SmithProdText">
<ItemTemplate>
<a runat="server" target="_blank" id="lnkDownloadNow" visible="false">Download Now</a>
</ItemTemplate>
</asp:TemplateColumn>

Directly after the line highlighted in yellow, insert an html image tag with a path to the image you want to display next to the download link.


At your service,
Dave Smith
DotNetNuke Consulting, DotNetNuke Store and DNN Ecommerce
 
Previous
 
Next
HomeHome Product Discus... Product Discus...SmithCartSmithCartHow to make the download link on confirmation page largerHow to make the download link on confirmation page larger