It appears to have been an encoding issue, thanks for the tip! I wish I knew how that was happening, but no matter.
I have a minor style issue; another person coded a custom mod for me which adds a "custom rank" (user editable) with a correlating "custom color". The project was never completely finished.
You can see what I'm talking about in the following screenshot:
Where the cursor is you can see my "custom rank", in green. This is below the rank image (Minister). Above the rank image is the normal rank title which has been edited to show up in the same color as the default group color (blue, in my case). All of this results in a pretty unique code block:
- Code: Select all
<!-- IF postrow.RANK_TITLE or postrow.RANK_IMG --><dd><strong<!-- IF postrow.POST_AUTHOR_COLOUR --> style="color: {postrow.POST_AUTHOR_COLOUR}"<!-- ENDIF -->>{postrow.RANK_TITLE}</strong><!-- IF postrow.RANK_TITLE and postrow.RANK_IMG --><br /><!-- ENDIF -->{postrow.RANK_IMG}</dd><!-- ENDIF -->
<dd><span <!-- IF postrow.S_PROFILE_CUSTOMRANKCOLOR -->style="color: {postrow.PROFILE_CUSTOMRANKCOLOR_VALUE};font-weight:bold;"<!-- ENDIF -->>
<!-- IF postrow.S_PROFILE_CUSTOMRANK -->{postrow.PROFILE_CUSTOMRANK_VALUE}<!-- ENDIF --></span>
</dd>
I want to modify this to include the code for viewtopic_body.html. The ADD AFTER code is as follows:
- Code: Select all
<!-- IF postrow.RANK2_TITLE or postrow.RANK2_IMG --><dd>{postrow.RANK2_TITLE}<!-- IF postrow.RANK2_TITLE and postrow.RANK2_IMG --><br /><!-- ENDIF -->{postrow.RANK2_IMG}</dd><!-- ENDIF -->
<!-- IF postrow.RANK3_TITLE or postrow.RANK3_IMG --><dd>{postrow.RANK3_TITLE}<!-- IF postrow.RANK3_TITLE and postrow.RANK3_IMG --><br /><!-- ENDIF -->{postrow.RANK3_IMG}</dd><!-- ENDIF -->
<!-- IF postrow.RANK4_TITLE or postrow.RANK4_IMG --><dd>{postrow.RANK4_TITLE}<!-- IF postrow.RANK4_TITLE and postrow.RANK4_IMG --><br /><!-- ENDIF -->{postrow.RANK4_IMG}</dd><!-- ENDIF -->
Here is how I want it to be when I'm finished. I want there to be NO rank title (not even the blue one currently above the rank image). I want to move the custom rank (currently below the rank image) to ABOVE the rank image (where the rank title is currently) and then add the new extra rank images below the existing rank image, so that a person could theoretically have four stacked rank images. The problem is I can't figure out how I should change this code block to do this, does anybody have any advice on what this code block should look like?