Group by header

Currently, when i do group by & click summary, the group by header is in the middle of rows.
ie,

                   item1            qty1

header1 item1 qty1
item1 qty1
total item1 qty1
item2 qty2
header2 item2 qty2
item2 qty2
total item2 qty2

how do i make it like this :
header1 item1 qty1
item1 qty1
item1 qty1
total item1 qty1

header2 item2 qty2
item2 qty2
item2 qty2
total item2 qty2

Attached is the format i had.

Thank’s

summary.jpg

hi kakibox, i guess you forgot to tell us what you want to do?

Sorry about that.
Got language problem & got too excited with the questions :slight_smile:

Pease open up the new image, hopefully, it can explain better

Thank’s itsme3

summary.jpg

Look with dev tools the css class used and apply an align vertically top

Thank’s Giu.

You can use this code, place on Group by events :
?>
<style>

td.scGridBlock.scGridBlockFont{
vertical-align: top;
}
</style>

<?php

Great Turikan.

Thank’s a lot

can you explain detail to me ?
because i try but still no different

[QUOTE=Turikan;28245]You can use this code, place on Group by events :
?>
<style>

td.scGridBlock.scGridBlockFont{
vertical-align: top;
}
</style>

<?php[/QUOTE]

[QUOTE=Iwan.setiawan;29196]can you explain detail to me ?
because i try but still no different[/QUOTE]

Iwan, this is a way of adding CSS properties to a class to adjust it, it can be done in events, or from main SC CSS, using events proofed useful for quickly and targeted workaround fix

as Giu said above, use dev tool to know the exact css then apply adjustments