i have a list output on a php page.
but i want the list layout show in inline-block style.
How can I do this?
this is my code so far...
bx_import('BxDolService');
list($sRecords) = BxDolService::call('business', 'index_page', array('recent'));
<div class="bodyLeftBlock_business_pages_links_one"><?= $sRecords ?></div>
result is:
item_1
item_2
etc..
instead of item_1 item_2 item_3
any help is welcome :-)