I'm attempting to modify a CSS code snippet for Spiceworks.
Here is the specific line that I need to adjust:
<td class="body-id cell-id" style="width: 12%; "></td>
The following code:
SPICEWORKS.utils.addStyle('body{background-color:blue}');
successfully changes the background color as intended. I believe I can also utilize the SPICEWORKS.utils.addStyle
function to modify the width of a table. However, my struggle lies in specifying which exact <td>
element's width I want to alter.
P.S. I am currently in a training role and not yet proficient in programming.