Change a table style's location programmatically
Posted: Thu Jan 20, 2022 7:57 pm
I have a lot of files that have table style sheets here:
<table cellpadding="0" cellspacing="0" class="TableStyle-Numbered" style="width: 100%;caption-side: top;mc-table-style: url('../Resources/TableStyles/Numbered.css');">
I want to change the table style sheet to the same style name but in a different location on my computer.
<table cellpadding="0" cellspacing="0" class="TableStyle-Numbered" style="width: 100%;mc-table-style: url('Resources/TableStyles/Numbered.css');margin-left: 0;margin-right: auto;caption-side: top;">
I have tried all manners of searching in the source code but it will not find them.
<table cellpadding="0" cellspacing="0" class="TableStyle-Numbered" style="width: 100%;caption-side: top;mc-table-style: url('../Resources/TableStyles/Numbered.css');">
I want to change the table style sheet to the same style name but in a different location on my computer.
<table cellpadding="0" cellspacing="0" class="TableStyle-Numbered" style="width: 100%;mc-table-style: url('Resources/TableStyles/Numbered.css');margin-left: 0;margin-right: auto;caption-side: top;">
I have tried all manners of searching in the source code but it will not find them.