Form
Each tab in a Web view is a form that contains a table. The HTML looks like this:
<body class="RecordBody" >
<form name="Record">
<table class="RecordTab" >
So, for example, to change the background color of the tabs, edit the body.RecordBody class in CensusMain.css.
To apply styles to the form element, you can use this selector in the style sheet:
body.RecordBody form { ... }
Related Topics