You could try a search and replace on all HTML files (from within code view). Look at the paragraphs that alternate in size, the underlying html code probably looks a little like this:
<p class="sgc-14">Blah Blah</p>
<p class="sgc-15">Blah Blah</p>
<p class="sgc-14">Blah Blah</p>
<p class="sgc-15">Blah Blah</p>
Now if you do a search for <p class="sgc-15">, telling Sigil to replace every occurence in every file with <p class="sgc-14"> you will end up with something like this:
<p class="sgc-14">Blah Blah</p>
<p class="sgc-14">Blah Blah</p>
<p class="sgc-14">Blah Blah</p>
<p class="sgc-14">Blah Blah</p>
Which should result in the alternating paragraphs now having the same size. In some files you might see something like:
<p class="sgc-14"><span class="sgc-63">Blah Blah</span></p>
<p class="sgc-15"><span class="sgc-66">Blah Blah</span></p>
<p class="sgc-14"><span class="sgc-63">Blah Blah</span></p>
<p class="sgc-15"><span class="sgc-66">Blah Blah</span></p>
In that case you'd expand the search and replace:
Search for: <p class="sgc-15"><span class="sgc-66">
Replace with: <p class="sgc-14"><span class="sgc-63">
That'll probably be enough to achieve what you need to do. Make sure you have a backup of the file before you make any changes like this. It's easy to go too far when making these sorts of global substitutions and you can end up erasing some useful semantic information.
|