• Resolved javierst

    (@javierst)


    Hi,

    I’m displaying a view from Dynamics on our website, but the blue background of the header row extends to the second row, making the first field on the table look like part of the header.

    I can’t find any options to control that. Can someone please help?

    Thanks,

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Author alexacrm

    (@alexacrm)

    Hi @javierst

    this is the styling that is applied on your site. If you take a look at the HTML source, you’ll see that we emit the following code:

    
    <table class="mscrm-listview table">
    <thead>
    <tr><th style="width:23.81%;">Start Date</th>
    <th style="width:57.143%;">Name</th>
    <th style="width:19.048%;">Venue</th></tr></thead>
    <tbody><tr><td>9/20/2019 7:30 PM</td>
    <td>Eskimos Vs Hamilton Wildcats</td>
    <td>Commonwealth Stadium</td></tr>
    <tr><td>9/21/2019 4:30 PM</td>
    <td>FC Edmonton vs York9</td>
    <td>Clarke Stadium</td></tr></tbody>
    <tfoot><tr><td colspan="3"></td></tr></tfoot></table>
    

    There is no styling applied whatsoever. If you want to adjust the table look and feel, just use CSS class mscrm-listview to apply selective styling, e.g. to set header background to red:

    
    table.mscrm-listview th {
        background-color: red;
    }
    

    HTH
    George

    • This reply was modified 5 years, 6 months ago by alexacrm.
Viewing 1 replies (of 1 total)
  • The topic ‘View header extending to second row’ is closed to new replies.