Quote:
Originally Posted by Vtec44
Search in the XML file for the code below
Code:
<option value="1">Postbit Article</option>
<option value="2">Postbit Legacy</option>
<option value="3">Postbit Flipped</option>
<option value="4">Postbit Normal</option>
and switch the order between Postbit Article and Legacy. Then import the XML (remember to set it to overwrite).

|
The more efficient way to do this is to use the selected option, such as:
Code:
<option value="1">Postbit Article</option>
<option value="2">Postbit Legacy</option>
<option value="3">Postbit Flipped</option>
<option value="4" selected>Postbit Normal</option>
This will automatically select the 'postbit normal' setting for you.