XF 1.2 Last questions

Pierre Boulanger

Active member
After a month hopfully today we will go live but there are a couple of issues to address:

1) There is an issue with Global moderators. Even though they have all the required permission and appear in user lists correctly in their profile appear as members!2013-08-02 10_25_35-Flaminio Bertoni _ my2cv.gr - The story of a legend.webp

2013-08-02 10_25_54-my2cv.gr - The story of a legend.webp

2) Is it possible to center small user names?
2013-08-02 10_25_02-Final Migration - Readme _ my2cv.gr - The story of a legend.webp
 

Attachments

  • photo.webp
    photo.webp
    45.4 KB · Views: 3
That's because the style is responsive, so that CSS applies.

You have to use media queries to change the CSS based on the page width.
Code:
.Responsive .messageUserBlock a.username {
text-align: center;
}

@media (max-width:@maxResponsiveNarrowWidth) {
  .Responsive .messageUserBlock a.username {
    text-align: left;
    }
}
 
That's because the style is responsive, so that CSS applies.

You have to use media queries to change the CSS based on the page width.
Code:
.Responsive .messageUserBlock a.username {
text-align: center;
}

@media (max-width:@maxResponsiveNarrowWidth) {
  .Responsive .messageUserBlock a.username {
    text-align: left;
    }
}
wow.. Can you please tell me how? What should i do?
 
I don't know what you want so it's impossible for me to suggest something.

Just use the LikeLabel class and style it to suit:
Code:
.LikeLabel {
color: red;
font-weight: bold;
padding: 4px;
border: 1px solid black;
}
 
Everyware Admin name is red as i wanted to but not in the top please see attachment..
What I'm doing wrong?
Thanks
 

Attachments

  • 2013-08-12 18_11_41-my2cv.gr - The story of a legend.webp
    2013-08-12 18_11_41-my2cv.gr - The story of a legend.webp
    32 KB · Views: 4
Just create a new template with your HTML/CSS and include it in the sidebar - you can use one of the ad_sidebar templates if you wish.
 
Top Bottom