Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

More than one link??


loophole

Recommended Posts

using this as a guide I made an extra box called links. But all my fiddling around has failed to produce multiple links inside the box.

 

What I'm looking for is a box called links, with several links as box content(outside of oscommerce).

 

I did manage to get 2 links at one point, but the second somehow pushed the first into the box header.

 

Any help would be much appreciated.

 

-brandon

Link to comment
Share on other sites

After each links' anchor tag insert a <br />  other wise they will think its only one line

 

 

ok. I tried doing that. I probably did it completely wrong. I'm brand spanking new to all forms of code.

 

So right now I have this

$info_box_contents = array();
 $info_box_contents[] = array('align' => 'left',
'text' => '<a href="http://www.website.com/forums" target="_blank">Forums</a>'
);

 

where should I put this <br />?

 

$info_box_contents = array();
 $info_box_contents[] = array('align' => 'left',
'text' => '<a href="http://www.website.com/forums" target="_blank">Forums</a><br />'
'<a href="http://www.website.com/news" target="_blank">News</a><br />'
);

 

Something close to that?

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...