Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Insert bullet (pic) into information box(s) ?


Top_Speed

Recommended Posts

Posted

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!');

Posted
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

Posted
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 ??,???`???,?

Posted

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!');

Posted
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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...