function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Gm ChouhanGm Chouhan 

site.com

Hi,

I am using Data Tables and Forms in site.com page and i want to write custom CSS for Data Tables and Forms.
pls Help me
Wizno @ ConfigeroWizno @ Configero
What's the code you have now? Are you using <apex:pageBlockTable> or <apex:dataTable> ?
 
<table id="myCustomCSSTable" class="Table1">
  <apex:repeat value="{!myDataSet}" var="x">
    <tr>
      <td>Your content</td>
    </tr>
  </apex:repeat>
</table>

You can use <apex:repeat> to loop through your data set and customize the CSS in your table.