The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.

Centering rank titles (Poster's Side Profile)

+2
TheCrow
Sienna
6 posters

Go down

Solved Centering rank titles (Poster's Side Profile)

Post by Sienna Sat May 21 2016, 11:43

Technical Details


Forum version : #phpBB3
Position : Administrator
Concerned browser(s) : Mozilla Firefox, Google Chrome, Internet Explorer, Opera, Safari, Other
Screenshot of problem : https://i.imgur.com/bywt8ep.png
Who the problem concerns : All members
When the problem appeared : When it started
Forum link : http://www.ardentartforum.com/

Description of problem

Hello! So, I'm back having more questions. Well, I'd like to center rank titles in the poster's side profile, under the display picture. I want it to align under the center of the DP, basically how the username is.

This is the code I've tried

Code:
.postprofile dd:first-child, .ranktitle, div.ranktitle {
    font-size: 13px;
    font-weight: 700;
    text-align: center!important;

I've also tried padding and margins, but the rank titles aren't aligned. One rank title will be perfect, but the others will be too far to the right or left.


Last edited by Kelso on Mon May 23 2016, 18:54; edited 1 time in total
Sienna
Sienna
Forumember

Female Posts : 93
Reputation : 6
Language : English

http://liveandnet.forumotion.com/

Back to top Go down

Solved Re: Centering rank titles (Poster's Side Profile)

Post by TheCrow Sat May 21 2016, 13:27

Hello @Kelso,

Go to:
Admin Panel > Display > Templates > General > viewtopic_body
Find:
Code:
{postrow.displayed.POSTER_RANK_NEW}

and replace it with:
Code:
<center>{postrow.displayed.POSTER_RANK_NEW}</center>


That'll fix the rank positioning! Smile
TheCrow
TheCrow
Manager
Manager

Male Posts : 6913
Reputation : 794
Language : Greek, English

https://forumote.forumotion.com

Back to top Go down

Solved Re: Centering rank titles (Poster's Side Profile)

Post by SarkZKalie Sat May 21 2016, 14:13

Or you can try add this to your CSS
Code:
span.ranktitle {
    font-size: 13px;
    font-weight: bold;
    text-align: center;
    display: block;
    margin-bottom: -15px;
}
SarkZKalie
SarkZKalie
Support Moderator
Support Moderator

Male Posts : 1418
Reputation : 220
Language : English

https://rotavn.forumotion.com/

Back to top Go down

Solved Re: Centering rank titles (Poster's Side Profile)

Post by Ange Tuteur Sat May 21 2016, 16:43

Just a little trick you guys might want to know :

On phpbb3 you can use a single line of CSS to center the rank title. Go to Admin Panel > Display > Colors > CSS stylesheet and paste the following code :
Code:
.postprofile dt + dd { text-align:center; }
It doesn't require template edits or adding tags to the rank title.

Here's a breakdown :
Code:
.postprofile
== the profile info container.
Code:
.postprofile dt
== the definition title<dt> tag that contains the avatar + username.
Code:
.postprofile dt + dd
== the definition description<dd> tag directly after the <dt> tag, which contains the rank title.

Here's some info on the "next" selector :
http://www.w3schools.com/cssref/sel_element_pluss.asp
https://developer.mozilla.org/en-US/docs/Web/CSS/Adjacent_sibling_selectors
Ange Tuteur
Ange Tuteur
Forumaster

Male Posts : 13246
Reputation : 3000
Language : English & 日本語
Location : Pennsylvania

https://fmdesign.forumotion.com

Back to top Go down

Solved Re: Centering rank titles (Poster's Side Profile)

Post by Sienna Sun May 22 2016, 10:40

Sorry for the late reply! Was at work all day, haha.

@Luffy - Thank you for replying! I took the time and tried looking for the correct area, but I couldn't find it. :-( I got stuck at "Display" and didn't see "Templates" any where. Here's what it looked like for me.

Centering rank titles (Poster's Side Profile) 4a3a1bd1157b29d449b23597fbc02293

@SarkZKalie - Thanks for trying to help! So, the code did work, in a sense. It did center the rank titles, so that's good! But for some reason, I feel like there's a div or a margin making it off-centered. Here's a picture for an example:

Centering rank titles (Poster's Side Profile) M34Z8hN

The "Global Moderator" is not centered under the display picture and I'm assuming there's some coding that's causing that. Oh boy! Crying or Very sad

@Ange Tuteur - Woah! Thank you very much for explaining this to me. I'm not entirely familiar with CSS and have been learning a lot. This very helpful and I'll definitely be saving this information!




Update: I found out it has something with the margins. So, I did this.

Code:
.postprofile dd {
    margin-left: 0;
}

and that turned into this

Centering rank titles (Poster's Side Profile) AR2egTO

Basically, the rank title did get centered! But it reset my warning bar + information all the way to the left. We're almost there guys!

Sienna
Sienna
Forumember

Female Posts : 93
Reputation : 6
Language : English

http://liveandnet.forumotion.com/

Back to top Go down

Solved Re: Centering rank titles (Poster's Side Profile)

Post by Rhino.Freak Sun May 22 2016, 11:03

Instead of
Code:
.postprofile dd {
    margin-left: 0;
}
Use
Code:
.postprofile dt + dd {
    margin-left: 0;
}
And see if that fixes the warm bar.
Rhino.Freak
Rhino.Freak
Helper
Helper

Male Posts : 1248
Reputation : 104
Language : English
Location : Mumbai, India

http://freetest.forumotion.net/

Back to top Go down

Solved Re: Centering rank titles (Poster's Side Profile)

Post by TheCrow Sun May 22 2016, 12:52

Kelso wrote:@Luffy - Thank you for replying! I took the time and tried looking for the correct area, but I couldn't find it. :-( I got stuck at "Display" and didn't see "Templates" any where. Here's what it looked like for me.

@Kelso that means you are not the founder of the forum as only the founder (owner) of the forum is allowed to enter the templates! Smile
TheCrow
TheCrow
Manager
Manager

Male Posts : 6913
Reputation : 794
Language : Greek, English

https://forumote.forumotion.com

Back to top Go down

Solved Re: Centering rank titles (Poster's Side Profile)

Post by SLGray Sun May 22 2016, 21:20

Only the founder can see the templates section in the administration panel.


Centering rank titles (Poster's Side Profile) Slgray10

When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
SLGray
SLGray
Administrator
Administrator

Male Posts : 51482
Reputation : 3519
Language : English
Location : United States

https://forumsclub.com/gc/128-link-directory/

Back to top Go down

Solved Re: Centering rank titles (Poster's Side Profile)

Post by Sienna Mon May 23 2016, 12:34

@Rhino.Freak - Hi! I've tried that and it made all the information, such as Post and Age, etc to the far left.

Here's an image.

Centering rank titles (Poster's Side Profile) Q4aWsno

@Luffy and @SLGray - Ah! Okay. I will talk to the owner about it then.




I'd like to show you my code because I have so much going on, it's kind of scaring me. Beware!

Code:
span.ranktitle {
    font-size: 13px;
    font-weight: bold;
    text-align: center !important;
    display: block !important;
    margin-left: -10px !important;
}

 
.postprofile dd:first-child, .ranktitle, div.ranktitle {
font-size: 13px;
font-weight: bold;
text-align: center !important;

}
.postprofile dd, .label {
 color: ;

  .postprofile a:active, .postprofile a:link, .postprofile a:visited, .postprofile dt.author a {
  color: #DDDDDD !important;
}

.postprofile dt {
  padding-bottom:15px;
  position:relative !important;
  padding-top:25px !important; /* reserve space for username */
  margin-top:10px !important;
  text-align:center;

}

.postprofile dt > strong {
  position:absolute !important;
  top:0 !important;
  left:0 !important;
  width:100% !important;
  font-size: 12px !important;

  /* limit username to one line */
  white-space:nowrap !important;
  overflow:hidden !important;
  text-overflow:ellipsis !important;
  bottom: 10px
  font-size: 14px !important;
}

Here's an example of what I'm trying to get (this is a photoshopped image, not done by coding)

Centering rank titles (Poster's Side Profile) Aea3a6b88ee9e15a40eb4e05a4f571c6

Basically, if I center the rank title, the information moves all the way to the left. :-( Grr, my head hurts.

Again, thank you for the help!
Sienna
Sienna
Forumember

Female Posts : 93
Reputation : 6
Language : English

http://liveandnet.forumotion.com/

Back to top Go down

Solved Re: Centering rank titles (Poster's Side Profile)

Post by Ange Tuteur Mon May 23 2016, 13:55

Hmm.. since the rank doesn't need a margin we could use the following CSS rules instead :
Code:
.postprofile dt, .postprofile dd { margin:0; }
.postprofile dt + dd ~ dd {
  margin-left:19px;
}
The first rule resets the margin and the second rule adds a margin to the left of the dd tags AFTER the rank title. Like the rule I gave you in at topic prior, feel free to edit the value "19px" to change the starting position of the fields.
Ange Tuteur
Ange Tuteur
Forumaster

Male Posts : 13246
Reputation : 3000
Language : English & 日本語
Location : Pennsylvania

https://fmdesign.forumotion.com

Back to top Go down

Solved Re: Centering rank titles (Poster's Side Profile)

Post by Sienna Mon May 23 2016, 18:45

@Ange Tuteur -
Outdated:

Update!

I fixed it completed! I messed with a few selectors and re-added display: block;

Thank you all for helping me! I really appreciate this. Also, thank you Ange Tuteur for supplying the last piece!


My finished product
Centering rank titles (Poster's Side Profile) UB0SX4Q

Code used to help out anyone else

Code:
.postprofile dd:first-child, .ranktitle, div.ranktitle {
    display: block !important;
  margin-bottom: -10px;
}
 

.postprofile dt, .postprofile dd {
  margin: 0 !important;

}
.postprofile dt + dd ~ dd {
  margin-left:17px !important;
}


This is solved, by the way. :-)
Sienna
Sienna
Forumember

Female Posts : 93
Reputation : 6
Language : English

http://liveandnet.forumotion.com/

Back to top Go down

Solved Re: Centering rank titles (Poster's Side Profile)

Post by Rhino.Freak Mon May 23 2016, 19:16

Thanks for providing the last piece of code Smile it's funny sometimes how little positioning can be troublesome XD
Rhino.Freak
Rhino.Freak
Helper
Helper

Male Posts : 1248
Reputation : 104
Language : English
Location : Mumbai, India

http://freetest.forumotion.net/

Back to top Go down

Solved Re: Centering rank titles (Poster's Side Profile)

Post by Ange Tuteur Mon May 23 2016, 19:28

@Rhino.Freak so is the nightmare known as the CSS box model that we all know and love. Razz
Ange Tuteur
Ange Tuteur
Forumaster

Male Posts : 13246
Reputation : 3000
Language : English & 日本語
Location : Pennsylvania

https://fmdesign.forumotion.com

Back to top Go down

Solved Re: Centering rank titles (Poster's Side Profile)

Post by Sienna Mon May 23 2016, 19:31

Yes, this was a really head scratcher. Glad it's out of the way because it irking me pretty bad. :-) Thanks again, all.
Sienna
Sienna
Forumember

Female Posts : 93
Reputation : 6
Language : English

http://liveandnet.forumotion.com/

Back to top Go down

Solved Re: Centering rank titles (Poster's Side Profile)

Post by SLGray Mon May 23 2016, 21:32

Topic solved and archived


Centering rank titles (Poster's Side Profile) Slgray10

When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
SLGray
SLGray
Administrator
Administrator

Male Posts : 51482
Reputation : 3519
Language : English
Location : United States

https://forumsclub.com/gc/128-link-directory/

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum