rachael_web86 Posted December 18, 2009 Share Posted December 18, 2009 Hiya guys, wondering if anyone would be so kind to help me as to what the code is I need to insert into the following snippet for an image to appear after the text ('Parcelforce (Outside of UK only)) ; define('MODULE_SHIPPING_ZONES_TEXT_TITLE', 'Parcelforce (Outside of UK only) ;'); Many thanks in advance :) Link to comment Share on other sites More sharing options...
burt Posted December 18, 2009 Share Posted December 18, 2009 Look in the module file for $this->icon = Link to comment Share on other sites More sharing options...
♥FWR Media Posted December 18, 2009 Share Posted December 18, 2009 Hiya guys, wondering if anyone would be so kind to help me as to what the code is I need to insert into the following snippet for an image to appear after the text ('Parcelforce (Outside of UK only)) ; define('MODULE_SHIPPING_ZONES_TEXT_TITLE', 'Parcelforce (Outside of UK only) ;'); Many thanks in advance :) define( 'MODULE_SHIPPING_ZONES_TEXT_TITLE', 'Parcelforce (Outside of UK only) ' . tep_image( DIR_WS_IMAGES . 'myimage.gif', 'My image text', '80', '20' ) ); 1) This assumes that the image is in the images directory. 2) Change myimage.gif to the name of your image 3) Change "My image text" to the alt text for your image 4) Change the 80(width) 20(height) to the height and width of your image. Ultimate SEO Urls 5 PRO - Multi Language Modern, Powerful SEO Urls KissMT Dynamic SEO Meta & Canonical Header Tags KissER Error Handling and Debugging KissIT Image Thumbnailer Security Pro - Querystring protection against hackers ( a KISS contribution ) If you found my post useful please click the "Like This" button to the right. Please only PM me for paid work. Link to comment Share on other sites More sharing options...
rachael_web86 Posted December 18, 2009 Author Share Posted December 18, 2009 define( 'MODULE_SHIPPING_ZONES_TEXT_TITLE', 'Parcelforce (Outside of UK only) ' . tep_image( DIR_WS_IMAGES . 'myimage.gif', 'My image text', '80', '20' ) ); 1) This assumes that the image is in the images directory. 2) Change myimage.gif to the name of your image 3) Change "My image text" to the alt text for your image 4) Change the 80(width) 20(height) to the height and width of your image. Brilliant thank you so much :) Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.