PDA

View Full Version : Category Description text


msm
05-12-2007, 12:44 PM
Hi,

how can i set the description text of the category to "justify" "justification"

I do not know the correct word ;-(

I'd like to have all the text equaly formated.....not "align right, center or left".....should be "align justify" !?

Can you help ?

regrads,
Mike
www.creditlink.de

Dave Baker
05-14-2007, 07:03 PM
Hello Mike,
***Open templates/yourTemplate/index.tpl and find code***

{if $category.description}
<div class="box">{$category.description|escape:"html"}</div>
{/if}

***Replace with**

{if $category.description}
<div class="box" style="text-align: justify;">{$category.description|escape:"html"}</div>
{/if}

***Save changes***

msm
05-14-2007, 09:02 PM
thanks !!!

worked fine !

regards,
Mike

Dave Baker
05-14-2007, 09:04 PM
You're welcome Mike!