RossChops Posted February 23, 2010 Share Posted February 23, 2010 HiAny ideas how I make the text in the data sheet section of a product page continue to flow under feature value field as opposed to flowing under the feature title when the custom text i enter flows onto more than one line?This is what it looks like at the moment...http://www.flashingmonkey.com/product.php?id_product=107ThanksRoss Link to comment Share on other sites More sharing options...
codegrunt Posted March 12, 2010 Share Posted March 12, 2010 In your theme directory you will have "product.tpl". The relevant section looks like this: > {if $features} <!-- product's features --> </pre> <ul> {foreach from=$features item=feature} {$feature.name|escape:'htmlall':'UTF-8'} {$feature.value|escape:'htmlall':'UTF-8'} {/foreach} </ul> <br> {/if Basically you would need to come up with a column type structure using either CSS or tables and then plunk {$feature.name|escape:'htmlall':'UTF-8'} in a separate column than {$feature.value|escape:'htmlall':'UTF-8'}.Cheers Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now