The iPhone template comes in two parts, with two different files so you have to go into DVDpedia.app to look for the second part of the template first. You'll find it by ctrl-clicking (right-clicking) the DVDpedia icon and then navigating to Show package contents/Contents/Resources/Templates/iPhoneDetails.html. Create a copy of the file (Command-D), rename the copy to 'MyiPhoneDetails.html' and move it into your DVDpedia data folder where the rest of your customized MyiPhone.html template resides already. (By default this would be in your Home folder under ~/Library/Application Support/DVDpedia/Templates/).
Then open the MyiPhoneDetails.html file in your text editor and change the tag
Code: Select all
<img src="../[key:starRatingURL]"/>
for
and save it.
After that, if you haven't done that already, change the following in the MyiPhone.html file:
Code: Select all
<meta name="details" content="iPhoneDetails.html" /> becomes <meta name="details" content="MyiPhoneDetails.html" />
and
<img src="[key:starRatingURL]" class="starRatingURL"/> becomes <div class="starRatingURL">[key:custom1]</div>
You'll also have to add color to the starRatingURL class because it's white at the moment which means your custom 1 data won't be visible. To do that, open the iPhone.css file found in Images/MyiPhoneImages/ folder (along with the rest of your MyiPhone template files) and add whatever color you'd like to the class. For example:
Code: Select all
.starRatingURL {
float: right;
font-size:10px;
color:#666;
}
Save everything and try the export again. The star ratings should be replaced with your custom 1 information now.