Top_Speed Posted September 29, 2005 Posted September 29, 2005 I would like a bullet (code below) inserted into some boxes in front of the link tep_image(DIR_WS_IMAGES . 'bullet_category.gif A typical link to have this bullet inserted would be: "<A HREF=\"" . tep_href_link(FILENAME_PASSWORD_FORGOTTEN, '', 'SSL') . "\">" . LOGIN_BOX_PASSWORD_FORGOTTEN . "</A> So how is the bullet (top code) combined with the link (bottom code) ??? Thanks for your consideration & help! Ken define('PROJECTS', 'Something that goes on forever!');
dahui Posted September 29, 2005 Posted September 29, 2005 I would like a bullet (code below) inserted into some boxes in front of the link tep_image(DIR_WS_IMAGES . 'bullet_category.gif A typical link to have this bullet inserted would be: "<A HREF=\"" . tep_href_link(FILENAME_PASSWORD_FORGOTTEN, '', 'SSL') . "\">" . LOGIN_BOX_PASSWORD_FORGOTTEN . "</A> So how is the bullet (top code) combined with the link (bottom code) ??? Thanks for your consideration & help! Ken depends, you want the bullet in or out the link ? IN "<A HREF=\"" . tep_href_link(FILENAME_PASSWORD_FORGOTTEN, '', 'SSL') . "\">" . tep_image(DIR_WS_IMAGES . 'bullet_category.gif') . " " . LOGIN_BOX_PASSWORD_FORGOTTEN . "</A> OUT . tep_image(DIR_WS_IMAGES . 'bullet_category.gif') . " <A HREF=\"" . tep_href_link(FILENAME_PASSWORD_FORGOTTEN, '', 'SSL') . "\">" . LOGIN_BOX_PASSWORD_FORGOTTEN . "</A> dahui
shaytaan Posted September 29, 2005 Posted September 29, 2005 I would like a bullet (code below) inserted into some boxes in front of the link tep_image(DIR_WS_IMAGES . 'bullet_category.gif A typical link to have this bullet inserted would be: "<A HREF=\"" . tep_href_link(FILENAME_PASSWORD_FORGOTTEN, '', 'SSL') . "\">" . LOGIN_BOX_PASSWORD_FORGOTTEN . "</A> So how is the bullet (top code) combined with the link (bottom code) ??? Thanks for your consideration & help! Ken like this '<img src="images/bullet_category.gif" style="margin-right:5px" align="absmiddle"><a href="' . tep_href_link(FILENAME_PASSWORD_FORGOTTEN, '', 'SSL') . "\">" . LOGIN_BOX_PASSWORD_FORGOTTEN .'</a><br>' . I think we replied at the same time :) ?,???`???,?? God must love stupid people, he made so many ??,???`???,?
Top_Speed Posted September 29, 2005 Author Posted September 29, 2005 Thank you to both of you guys! Works with no errors... EXCELLENT! Your help is so appreciated :thumbsup: Ken define('PROJECTS', 'Something that goes on forever!');
dahui Posted September 29, 2005 Posted September 29, 2005 Thank you to both of you guys! Works with no errors... EXCELLENT! Your help is so appreciated :thumbsup: Ken I am still a newb too ;) and I am learning a lot just following the board. thx for yr feedback dahui
Recommended Posts
Archived
This topic is now archived and is closed to further replies.