XF 1.2 Some question for optimizing my forum

NGS

Member
Hi,
I have a few questions to ask yourself.

I want to replace my navigation bar that allows mounted and down the page as a bar like this. (Example: http://fr-modz.com)
BNZ32wa.png


then

I would like to know how to enable my logo header becomes transparant, but not all at once, I would like to see that progress towards transparancy to give you an example, flew over the logo of the site: http:// realitygaming.fr

then

I would like the menu tabs down the overview of our nickname is the small icon like this:
t7z6.png


then

I would like my personal details on a message like this:
thpm.png
the places they appear like this:
9nvMyMO.png


then

I want my number message, I love ect. focus appears like this:
MC3PFxc.png
(With small logo at the beginning)

And finally,

I love the last post of a topic created appears as text with a tag like this
JREZppa.png

(This is the last post of a topic in the staff section, this allows faster editing the post rather than going into the template of the admin cp)
 
Unfortunately not.

Here is what it shows men
lgf.png


Here is my css

Code:
.messageUserBlock .extraUserInfo dl.userField_NitendoNetwork dt {
float: left;
display: none !important;
}
 
Last edited:
I do not understand too, could you guide me with the code, I'm not really specialize in coding.
What he is referring to is you showed code for Nintendo - but your example shows for xBox and PlayStation. Do you have similar code for each one of those in your EXTRA.css?
 
Unfortunately not.

Here is what it shows men
lgf.png


Here is my css

Code:
.messageUserBlock .extraUserInfo dl.userField_NitendoNetwork dt {
float: left;
display: none !important;
}
I'm sorry, I misread the original CSS. Use this:
Code:
.messageUserBlock .extraUserInfo dl.userField_NitendoNetwork dd {
  float: right;
}

It places them to the right, floating left doesn't seem to work.
 
I'm not very good at coding, could you tell me or place the margin-right

Here is my code

Code:
.messageUserBlock .extraUserInfo dl.userField_Playstation dt {
float: left;
display: none !important
}

.messageUserBlock .extraUserInfo dl.userField_Playstation dd {
  float: right;
}
 
Top Bottom