Modifications for phpBB3.
Try the Mods here and share Your own Mods
Forum rules
You dont have to use ModX or make your mod AutoMod compatible. A simple textfile is fine
But if you post Mods here You also have to give support
Post
by mikef35 » 09 Jun 2012, 19:17
Below is the code I am using, so far all is good except that the special rank is to far to the right. Any Ideas on how I can get it to line up to the left with the rest. Thanks
Code: Select all
<!-- IF postrow.RANK_TITLE or postrow.RANK_IMG -->
<dd>
<div class="profile-rank">
{postrow.RANK_TITLE}
<!-- IF postrow.RANK_TITLE and postrow.RANK_IMG --><br /><!-- ENDIF -->
{postrow.RANK_IMG}
</div>
</dd>
<!-- ENDIF -->
<dd>
<!-- IF postrow.EXTRA_RANK_TITLE --><div class="posterrank">{postrow.EXTRA_RANK_TITLE}</div><!-- ENDIF --> <!-- IF postrow.EXTRA_RANK_IMG --><div class="postrankimg">{postrow.EXTRA_RANK_IMG}</div><!-- ENDIF -->
</dd>
You do not have the required permissions to view the files attached to this post.
Post
by martin123456 » 09 Jun 2012, 19:34
Add
Take a close look at what you have so far
Last edited by martin123456 on 09 Jun 2012, 19:35, edited 1 time in total.
Post
by mikef35 » 09 Jun 2012, 19:35
I have tried that in many different ways, plus you can see it is wrapped in that now.
Post
by martin123456 » 09 Jun 2012, 19:36
you have
Code: Select all
<!-- IF postrow.EXTRA_RANK_TITLE --><div class="posterrank">{postrow.EXTRA_RANK_TITLE}</div><!-- ENDIF --> <!-- IF postrow.EXTRA_RANK_IMG --><div class="postrankimg">{postrow.EXTRA_RANK_IMG}</div><!-- ENDIF -->
</dd>
try
Code: Select all
<dd><!-- IF postrow.EXTRA_RANK_TITLE --><div class="posterrank">{postrow.EXTRA_RANK_TITLE}</div><!-- ENDIF --> <!-- IF postrow.EXTRA_RANK_IMG --><div class="postrankimg">{postrow.EXTRA_RANK_IMG}</div><!-- ENDIF --></dd>
Post
by mikef35 » 09 Jun 2012, 19:38
So what are you saying? Remove all the DIV's?
Post
by martin123456 » 09 Jun 2012, 19:39
mikef35 wrote: So what are you saying? Remove all the DIV's?
make it like this
Code: Select all
<dd><!-- IF postrow.EXTRA_RANK_TITLE --><div class="posterrank">{postrow.EXTRA_RANK_TITLE}</div><!-- ENDIF --> <!-- IF postrow.EXTRA_RANK_IMG --><div class="postrankimg">{postrow.EXTRA_RANK_IMG}</div><!-- ENDIF --></dd>
and note the post count work off that code as it had the same problem
Post
by mikef35 » 09 Jun 2012, 19:42
That is what I already have. And that is also not the rank I need to move. If you look at the picture, I only need to move the Administrator bar to the left.
The Post count was to far to the left, the <dd> put it back inline to the right.
Post
by mikef35 » 09 Jun 2012, 20:02
Got it worked out. SOLVED
Post
by martin123456 » 09 Jun 2012, 20:09
Just as i said
rankk.png
You do not have the required permissions to view the files attached to this post.
Post
by mikef35 » 09 Jun 2012, 20:22
The code you suggested, had nothing to do with my problem. I worked it out, it was a graphics issue.