Résolu cherche logo tag shoutbox xenforo

Haribomodzz

Bitcoins buyer/seller
Premium
Inscription
20 Octobre 2014
Messages
1 359
Réactions
500
Points
17 551
RGCoins
80
je cherche ceci
You must be registered for see images attach

Merci d'avance
 
c'est pas une image mais un style HTML ou CSS

HTML
<i class="fa fa-tag"></i>

CSS:
font-family: "FontAwesome";
content: "\f02b";
display: inline-block;
opacity: 0.5;
color: rgba(20,20,20,0.78);
je le rentre comment ?
 
Yo va dans le template PAGE_CONTAINER
Ajoute apres <head>
HTML:
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
Puis tu va dans le template dark_taigachat_message tu cherche
Code:
<span class="{xen:if {$message.me}, 'taigachat_me'} {xen:if {$message.activity}, 'taigachat_activity'}">

tu remplace par
Code:
<span class="tagShoutbox" onclick="$('#taigachat_message').val($('#taigachat_message').focus().val()+'@{$message.username} : ');"> </span>
ensuite tu va dans le template EXTRA.css et tu ajoute
Code:
.tagShoutbox {
    background-image: none;
    color: transparent
}

.tagShoutbox:after {
    font-family: "FontAwesome";
    content: "\f02b";
    display: inline-block;
    opacity: 0.5;
    color: rgba(20, 20, 20, 0.78)
}

.tagShoutbox:hover:after {
    -webkit-transform: rotate(400deg);
    -moz-transform: rotate(400deg);
    -o-transform: rotate(400deg);
    -ms-transform: rotate(400deg);
    transform: rotate(400deg);
    -webkit-transform: rotate(400deg);
    -moz-transform: rotate(400deg);
    -ms-transform: rotate(400deg);
    -o-transform: rotate(400deg);
    transition: all 0.35s;
    -webkit-transition: all 0.35s;
    -moz-transition: all 0.35s;
    -ms-transition: all 0.35s;
    -o-transition: all 0.35s;
    cursor: pointer;
    color: #3C7C95
}
 
Cette réponse a aidé l'auteur de cette discussion !
Salut,

Ta demande est-elle résolue ?
Si oui, tu peux cliquer sur Cette réponse a répondu à ma question sur le message qui t'as aidé pour rajouter le préfixe résolu à la discussion. :)

Bonne après-midi,
Skare SEC
 
Yo va dans le template PAGE_CONTAINER
Ajoute apres <head>
HTML:
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
Puis tu va dans le template dark_taigachat_message tu cherche
Code:
<span class="{xen:if {$message.me}, 'taigachat_me'} {xen:if {$message.activity}, 'taigachat_activity'}">

tu remplace par
Code:
<span class="tagShoutbox" onclick="$('#taigachat_message').val($('#taigachat_message').focus().val()+'@{$message.username} : ');"> </span>
ensuite tu va dans le template EXTRA.css et tu ajoute
Code:
.tagShoutbox {
    background-image: none;
    color: transparent
}

.tagShoutbox:after {
    font-family: "FontAwesome";
    content: "\f02b";
    display: inline-block;
    opacity: 0.5;
    color: rgba(20, 20, 20, 0.78)
}

.tagShoutbox:hover:after {
    -webkit-transform: rotate(400deg);
    -moz-transform: rotate(400deg);
    -o-transform: rotate(400deg);
    -ms-transform: rotate(400deg);
    transform: rotate(400deg);
    -webkit-transform: rotate(400deg);
    -moz-transform: rotate(400deg);
    -ms-transform: rotate(400deg);
    -o-transform: rotate(400deg);
    transition: all 0.35s;
    -webkit-transition: all 0.35s;
    -moz-transition: all 0.35s;
    -ms-transition: all 0.35s;
    -o-transition: all 0.35s;
    cursor: pointer;
    color: #3C7C95
}
je vais voir ;)
 
Yo va dans le template PAGE_CONTAINER
Ajoute apres <head>
HTML:
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
Puis tu va dans le template dark_taigachat_message tu cherche
Code:
<span class="{xen:if {$message.me}, 'taigachat_me'} {xen:if {$message.activity}, 'taigachat_activity'}">

tu remplace par
Code:
<span class="tagShoutbox" onclick="$('#taigachat_message').val($('#taigachat_message').focus().val()+'@{$message.username} : ');"> </span>
ensuite tu va dans le template EXTRA.css et tu ajoute
Code:
.tagShoutbox {
    background-image: none;
    color: transparent
}

.tagShoutbox:after {
    font-family: "FontAwesome";
    content: "\f02b";
    display: inline-block;
    opacity: 0.5;
    color: rgba(20, 20, 20, 0.78)
}

.tagShoutbox:hover:after {
    -webkit-transform: rotate(400deg);
    -moz-transform: rotate(400deg);
    -o-transform: rotate(400deg);
    -ms-transform: rotate(400deg);
    transform: rotate(400deg);
    -webkit-transform: rotate(400deg);
    -moz-transform: rotate(400deg);
    -ms-transform: rotate(400deg);
    -o-transform: rotate(400deg);
    transition: all 0.35s;
    -webkit-transition: all 0.35s;
    -moz-transition: all 0.35s;
    -ms-transition: all 0.35s;
    -o-transition: all 0.35s;
    cursor: pointer;
    color: #3C7C95
}
dans dark taigchat je trouve pas
<span class="{xen:if {$message.me}, 'taigachat_me'} {xen:if {$message.activity}, 'taigachat_activity'}">
 
Retour
Haut