Important Notice from AspDotNetStorefront
It is with dismay that we report that we have been forced, through the action of hackers, to shut off write-access to this forum. We are keen to leave the wealth of material available to you for research. We have opened a new forum from which our community of users can seek help, support and advice from us and from each other. To post a new question to our community, please visit: http://forums.vortx.com
Results 1 to 3 of 3

Thread: How to align Category Images

  1. #1
    fackourey is offline Member
    Join Date
    Dec 2007
    Posts
    43

    Default How to align Category Images

    We just upgraded to V8.0.1.2 - in our previous version (7.1.1) we TOP aligned all category images. For whatever reason we lost that setting (I thought it was aligned using a appconfig flag). Can someone tell me how to set V8 category images to top aligned?

    Thx

    Fred

  2. #2
    AspDotNetStorefront Staff - Scott's Avatar
    AspDotNetStorefront Staff - Scott is offline Administrator
    Join Date
    Mar 2007
    Location
    Ashland, OR
    Posts
    2,390

    Default

    That would be an XML package mod, not an AppConfig. Should be pretty simple, for example in entity.grid.xml.config something like changing

    Code:
    <td align="center" width="{concat(round(100 div number($SubcatGridCols)),'%')}">
    ...to...

    Code:
    <td align="top" width="{concat(round(100 div number($SubcatGridCols)),'%')}">
    ...ought to do it.

  3. #3
    fackourey is offline Member
    Join Date
    Dec 2007
    Posts
    43

    Default

    Thank you so much, works like a charm!