inherit
226738
0
Sept 22, 2023 19:17:13 GMT -8
11SQNLDR
22
November 2015
11sqnldr
|
Post by 11SQNLDR on Apr 15, 2017 15:57:09 GMT -8
Hi all, looking to add a 'joined date' into members mini-profiles. Something that I can hopefully drop into the mini-profile template and to display in a small font with 'Joined' followed by a colon -e.g.: Joined: Feb 2015 Ideally the font size and style exactly as default for post count, location etc and the first 3 letters of the month Thanks in advance for any assistance.
|
|
inherit
187476
0
May 18, 2020 16:00:31 GMT -8
Star's Legacy
1,019
December 2012
starshinelegacy
|
Post by Star's Legacy on Apr 15, 2017 16:05:06 GMT -8
You should be able to add this Joined: $[user.registered_on] to the mini profile template to display the date the member registered.
|
|
inherit
140147
0
Nov 19, 2024 5:07:22 GMT -8
Nscalerr
Throw me to the wolves and I'll return leading the pack!
3,043
May 2009
nscalerr
|
Post by Nscalerr on Apr 15, 2017 23:49:08 GMT -8
Or you can use Joined $[user.registered_on_short] which will show just the month and year.
|
|
inherit
226738
0
Sept 22, 2023 19:17:13 GMT -8
11SQNLDR
22
November 2015
11sqnldr
|
Post by 11SQNLDR on Apr 16, 2017 3:21:48 GMT -8
Thanks very much for the help so far guys I have since added the : but the font is still too big, any idea how it can be made the same size as the default letters for location and posts in the mini-profile? Would prefer just the first 3 letters of the month but can live with the full version if I can get that font smaller!
|
|
inherit
140147
0
Nov 19, 2024 5:07:22 GMT -8
Nscalerr
Throw me to the wolves and I'll return leading the pack!
3,043
May 2009
nscalerr
|
Post by Nscalerr on Apr 16, 2017 4:07:18 GMT -8
It should be the same font as the rest of the mini-profile, could you post a screenshot of your mini-profile. After looking at your forum, it would appear that you have somehow added it outside of the mini-profile itself. Star's Legacy
|
|
inherit
226738
0
Sept 22, 2023 19:17:13 GMT -8
11SQNLDR
22
November 2015
11sqnldr
|
Post by 11SQNLDR on Apr 16, 2017 4:26:13 GMT -8
Here we go mate: I just banged the code down the bottom into row 39.....
|
|
inherit
140147
0
Nov 19, 2024 5:07:22 GMT -8
Nscalerr
Throw me to the wolves and I'll return leading the pack!
3,043
May 2009
nscalerr
|
Post by Nscalerr on Apr 16, 2017 5:53:53 GMT -8
If you place the cursor on line 37 and press enter to create a new line, then move the code to the new line it will solve the problem of the font being too big.
The mini-profile finishes with the closing div on line 38 and the new bit of code has to be above this div for it be the same as the rest of the mini-profile.
p.s. nice looking forum and I used to be in to diecast, but cars more than planes.
|
|
inherit
226738
0
Sept 22, 2023 19:17:13 GMT -8
11SQNLDR
22
November 2015
11sqnldr
|
Post by 11SQNLDR on Apr 16, 2017 15:43:19 GMT -8
Thanks again, I moved it there however whilst it is now inside the mini-profile box the font size has not changed. Nice to hear from another collector - cars are equally addictive as aircraft from my experience
|
|
inherit
187476
0
May 18, 2020 16:00:31 GMT -8
Star's Legacy
1,019
December 2012
starshinelegacy
|
Post by Star's Legacy on Apr 16, 2017 16:33:02 GMT -8
Adding a font size tag around the previous code should change the size like this: <font size="1">Joined: $[user.registered_on]</font>
|
|
Kami
Forum Cat
Posts: 40,198
Mini-Profile Theme: Kami's Mini-Profile
#f35f71
156500
0
Offline
Jul 24, 2021 11:48:29 GMT -8
Kami
40,198
July 2010
kamiyakaoru
Kami's Mini-Profile
|
Post by Kami on Apr 16, 2017 18:19:17 GMT -8
Adding a font size tag around the previous code should change the size like this: <font size="1">Joined: $[user.registered_on]</font> It should really be <font style="font-size: 10px;"> as the size property is deprecated as of HTML5 and you should use inline css instead.
|
|
inherit
140147
0
Nov 19, 2024 5:07:22 GMT -8
Nscalerr
Throw me to the wolves and I'll return leading the pack!
3,043
May 2009
nscalerr
|
Post by Nscalerr on Apr 16, 2017 20:29:28 GMT -8
Just had a play around the default theme on my forum and having it on line 38 makes it still have a large font, but moving it to line 29, (above the closing div for the info) makes it have the same font as the rest of the mini profile.
Go to line 28 and press enter to create a new line, then move the code to the new line and this time it will solve the problem of the font being different, but it will only be visible to members, (this way the <font> tags are not needed).
|
|
inherit
226738
0
Sept 22, 2023 19:17:13 GMT -8
11SQNLDR
22
November 2015
11sqnldr
|
Post by 11SQNLDR on Apr 17, 2017 3:56:25 GMT -8
Bravo guys - mission accomplished and thanks very much
|
|
inherit
140147
0
Nov 19, 2024 5:07:22 GMT -8
Nscalerr
Throw me to the wolves and I'll return leading the pack!
3,043
May 2009
nscalerr
|
Post by Nscalerr on Apr 17, 2017 5:42:27 GMT -8
|
|