Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

How do I get information INSIDE the INFOBOX?


Totally Lost

Recommended Posts

Posted

Hi there,

I have a image that I would like to have inside a box / border - you can see what I mean on my site here:

 

My Webpage

 

I would like the "Live Support Online/Offline" box to be inside the box that is above it.

 

i.e: The box is already there....the image is already there...but i can seem to figure out, how i get the image inside of the box.

 

Thanks

Posted

Assuming the box is just an infobox without any code in it you should be able to merge the code for the live support into the code for the infobox

 

open the blank infobox page and look for something like

 

$info_box_contents = array();

$info_box_contents[] = array('text' =>

 

Then add your code so it looks like

 

$info_box_contents = array();

$info_box_contents[] = array('text' => 'Your code goes in here');

 

Depending on the code you may have to mess with it a little if it has apostrophes etc in it but that should get you going. I know there are a couple of contributions for live support, maybe one of those would help you.

Wendy James

 

Creativity is allowing yourself to make mistakes. Art is knowing which ones to keep.

Posted
Assuming the box is just an infobox without any code in it you should be able to merge the code for the live support into the code for the infobox

 

open the blank infobox page and look for something like

 

$info_box_contents = array();

$info_box_contents[] = array('text' =>

 

Then add your code so it looks like

 

$info_box_contents = array();

$info_box_contents[] = array('text' => 'Your code goes in here');

 

Depending on the code you may have to mess with it a little if it has apostrophes etc in it but that should get you going. I know there are a couple of contributions for live support, maybe one of those would help you.

 

 

That helped alot...turns out i had TWO info boxes...anyway, thanks again!

Archived

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

×
×
  • Create New...