Welcome Guest Search | Active Topics | Sign In | Register

Can you turn off table header repeating? Options
Josh Clark
Posted: Thursday, January 19, 2012 10:45:16 AM
Rank: Newbie
Groups: Member

Joined: 1/9/2012
Posts: 2
The feature where table theads and tfoots repeat across multiple pages is really cool. However, I have some old pages that use the thead for buttons and things that shouldn't get repeated. Is there a way to turn off this feature (other than changing my code to not use a <thead>?
eo_support
Posted: Thursday, January 19, 2012 10:54:28 AM
Rank: Administration
Groups: Administration

Joined: 5/27/2007
Posts: 24,194
Hi,

You have to change your HTML one way or another. : ) The easiest way to turn off all thead repeating in the page is to add the following CSS rule:

Code: CSS
thead
{
    display: table-row;
}


You can also apply this on a specific thead element individually. By default thead has display as "table-header-group". As soon as you change that, it will no longer be considered as a repeating header.

Hope this helps.

Thanks!


You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.