Hi,
I have problem when try resize table row, I need the header row are on top of each row content
This is my table:
this is my problem when use responsive design:
Table admin:
Thanks for all
Hi spr!
Could you provide us with a link to the site in question so that we can take a closer look please?
Best regards,
Rikard
Hi!
Please use the following in Quick CSS to hide the header row on mobile and to style the Header text for mobile:
@media only screen and (max-width: 767px) {
tr.avia-heading-row {
display:none !important;
}
.responsive .avia_responsive_table .avia-data-table td:before {
font-style: italic;
font-size: 16px;
}
}
Regards,
Rikard
thanks :)