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)
 
You asked about a logo... which is what is in the header of your site. That is the code that @Brogan gave you. You are asking about something different here.
I talked about the logo I mentioned earlier.

Would it be possible to help me.

Here is all the code that I put

(Personal Details -> HTML display value) :

Code:
<img src='http://image.noelshack.com/fichiers/2013/29/1374173955-xbox.png' class="Tooltip" title="Mon compte Playstation : {$value}"/>

(Extra.css) :

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

(Extra.css (2) )
Code:
.messageUserBlock .extraUserInfo dl.userField_Playstation dd {
  float: right;
}
 
Code:
.messageUserBlock .extraUserInfo dl.userField_Playstation dd {

display: none !important;
float: none !important;
text-align: center;
}
Do that for each one and it may work.

Code:
.messageUserBlock .extraUserInfo dl.pairsJustified dd {
display: none !important;
float: none !important;
text-align: center;
}

may also work without having to put one in for each one. It worked when I tried it on your site.
 
Top Bottom