Apparence des liens dans profil

3 participants

Voir le sujet précédent Voir le sujet suivant Aller en bas

Résolu Apparence des liens dans profil

Message par ludoloveisa Sam 8 Juin - 0:17

Bonjour,

J'aimerais modifier l'apparence des onglets du profil, sans modifier ceux de la barre de navigation. Je pensais qu'en mettant des images (identique à l'effet souhaité) en guise de barre de navigation, je pourrais alors modifier que ceux du profil, mais les images refusent d'apparaitre...

Je mets un screen pour que ça soit plus clair Smile

Apparence avec uniquement du css :

 Apparence des liens dans profil Bh10

Et lorsque je mets des images dans la barre de navigation grâce à la gestion des images (en cochant "mettre uniquement des images dans la barre de lien) :

Spoiler:

C'est comme si les images n'étaient pas prises en compte.

Est-ce que vous avez une solution à me proposer ? Parce que pour la barre, le css est correct, mais ça devient pas terrible pour le profil...

Merci beaucoup Smile[/


Dernière édition par ludoloveisa le Sam 15 Juin - 17:01, édité 1 fois
avatar

ludoloveisa
**

Masculin
Messages : 80
Inscrit(e) le : 21/07/2010

http://forbiddenforest.forumactif.org
ludoloveisa a été remercié(e) par l'auteur de ce sujet.

Résolu Re: Apparence des liens dans profil

Message par Matriochka Sam 8 Juin - 14:39

Bonjour,

Dans le template overall_header, trouve cette variable :
Code:
{GENERATED_NAVBAR}
Puis remplace-la par :
Code:
<div id="navbarindex">{GENERATED_NAVBAR}</div>
Ensuite, dans ton CSS, n’utilise plus la class mainmenu mais :
Code:
div#navbarindex a.mainmenu {}
avatar

Matriochka
Membre actif

Messages : 7604
Inscrit(e) le : 14/07/2010

Matriochka a été remercié(e) par l'auteur de ce sujet.

Résolu Re: Apparence des liens dans profil

Message par ludoloveisa Dim 9 Juin - 11:59

Coucou

Ce que tu ma donné à marché mais c'est pas ce que je voulais^^ Moi je voudrais pouvoir agir sur l'apparence des liens du profil, et pas l'inverse.
avatar

ludoloveisa
**

Masculin
Messages : 80
Inscrit(e) le : 21/07/2010

http://forbiddenforest.forumactif.org
ludoloveisa a été remercié(e) par l'auteur de ce sujet.

Résolu Re: Apparence des liens dans profil

Message par Izumi375 Dim 9 Juin - 15:03

Coucou,
Je me permets de répondre à la place de Matriochka qui a déjà donné 90% de la réponse. ^^
Pour les liens de profil le principe est le même sauf qu'on va chercher le template profile_add_body:
Là on a :
Code:
{UCP_TABS}

et tu fais pareil que ce qui a été dit plus haut:

Code:
<div id="navprofil">{UCP_TABS}</div>

et le css devient:

Code:
div#navprofil a.mainmenu {}

Voilà, c'est la même chose sauf que c'est la variable qui change. Wink
Izumi375

Izumi375
****

Féminin
Messages : 318
Inscrit(e) le : 30/08/2009

http://keikoku.forumpro.fr
Izumi375 a été remercié(e) par l'auteur de ce sujet.

Résolu Re: Apparence des liens dans profil

Message par ludoloveisa Lun 10 Juin - 5:36

L'astuce est bonne, sauf que ça marche pas sur tous les liens du profil... J'ai mis une div navprofil dans le template profile-edite-signature pour que ça marche sur le liens signature, et c'est bon, mais je trouve pas comment faire pour que ça marche aussi sur amis et ignorés, sujet favoris, favoris, et feuille de personnage.

avatar

ludoloveisa
**

Masculin
Messages : 80
Inscrit(e) le : 21/07/2010

http://forbiddenforest.forumactif.org
ludoloveisa a été remercié(e) par l'auteur de ce sujet.

Résolu Re: Apparence des liens dans profil

Message par Izumi375 Lun 10 Juin - 15:42

Comment ça, ça ne marche pas partout?
Je peux avoir une image? =]
Izumi375

Izumi375
****

Féminin
Messages : 318
Inscrit(e) le : 30/08/2009

http://keikoku.forumpro.fr
Izumi375 a été remercié(e) par l'auteur de ce sujet.

Résolu Re: Apparence des liens dans profil

Message par ludoloveisa Lun 10 Juin - 18:23

Bonjour,

Merci pour votre aide Smile

Voilà les screen pour les liens du profil en passant par "profil" dans la barre de navigation :

De "informations" à "avatar" les onglets sont corrects :

 Apparence des liens dans profil Profil10

Mais dès qu'on clique sur amis et tous les suivants, ça va plus :

 Apparence des liens dans profil Profil11

Et pareil pour le profil via le pseudo d'un membre. Mais pour ce dernier, j'ai désactivé le profil avancé, ce qui règle déjà ce problème^^

Cordialement.
avatar

ludoloveisa
**

Masculin
Messages : 80
Inscrit(e) le : 21/07/2010

http://forbiddenforest.forumactif.org
ludoloveisa a été remercié(e) par l'auteur de ce sujet.

Résolu Re: Apparence des liens dans profil

Message par Izumi375 Lun 10 Juin - 19:51

Aaaaahh ! J'ai compris ^^

En fait on utilise a.mainmenu qui désigne tous les liens dans notre div. Or quand on clique sur une page le lien sélectionné n'est plus un lien!
Bref on va utiliser ceci comme css plutôt:

Code:
div#navprofil .gen{
}
(puisque tous les éléments de navigation ont pour identifiant "gen")
Voilà Mr. Green
Izumi375

Izumi375
****

Féminin
Messages : 318
Inscrit(e) le : 30/08/2009

http://keikoku.forumpro.fr
Izumi375 a été remercié(e) par l'auteur de ce sujet.

Résolu Re: Apparence des liens dans profil

Message par ludoloveisa Mar 11 Juin - 5:33

Bonjour,

Merci beaucoup pour votre patience Smile J’apprends pas mal de trucs, c'est super Smile D'ailleurs, une petite question, est-ce que c'est vraiment obligé de mettre div suivi de # ? Quelle est la différence avec juste #navprofil par exemple ?

Par contre, le résultat obtenu grâce au dernier code n'est pas celui escompté^^ :

 Apparence des liens dans profil Jiu10

Si vous avez une dernière idée, je suis preneur, sinon, tanpis, les liens resterons à moitié biens^^ Et sinon, tant qu'à faire, si on pouvait retirer les séparations entre chaque liens, ce serait super Very Happy
avatar

ludoloveisa
**

Masculin
Messages : 80
Inscrit(e) le : 21/07/2010

http://forbiddenforest.forumactif.org
ludoloveisa a été remercié(e) par l'auteur de ce sujet.

Résolu Re: Apparence des liens dans profil

Message par Izumi375 Mar 11 Juin - 14:28

Euh... Ca marche parfaitement chez moi... Neutral

 Apparence des liens dans profil Faong10

Je peux voir le css et le lien du forum? ^^
Izumi375

Izumi375
****

Féminin
Messages : 318
Inscrit(e) le : 30/08/2009

http://keikoku.forumpro.fr
Izumi375 a été remercié(e) par l'auteur de ce sujet.

Résolu Re: Apparence des liens dans profil

Message par ludoloveisa Mar 11 Juin - 17:49

Et si vous cliquez sur amis et ignorés, ça marche toujours ?

Sinon, le lien du forum test : http://lbphpbb3.bbgraph.com/forum

et le css :

Spoiler:
avatar

ludoloveisa
**

Masculin
Messages : 80
Inscrit(e) le : 21/07/2010

http://forbiddenforest.forumactif.org
ludoloveisa a été remercié(e) par l'auteur de ce sujet.

Résolu Re: Apparence des liens dans profil

Message par Izumi375 Mar 11 Juin - 22:48

Aaaah. Mais en fait quand je donne un nouveau css il faut le remplacer pas le mettre à la suite. =p

Code:

div#navprofil a.mainmenu{
background: #fdf2c3;
border-top: 2px solid #ceb078;
border-right: 2px solid #ceb078;
border-left: 2px solid #ceb078;
border-radius: 10px 10px 0px 0px;
-moz-border-radius: 10px 10px 0px 0px;
-webkit-border-radius: 10px 10px 0px 0px;
-khtml-border-radius: 10px 10px 0px 0px;
}

div#navprofil .gen{
border-top: 2px solid #ceb078;
border-right: 2px solid #ceb078;
border-left: 2px solid #ceb078;
border-radius: 10px 10px 0px 0px;
-moz-border-radius: 10px 10px 0px 0px;
-webkit-border-radius: 10px 10px 0px 0px;
-khtml-border-radius: 10px 10px 0px 0px;
}

Avec div#navprofil a.mainmenu on a le code qui s'applique juste aux liens (pas les | qui ne sont pas les liens) et en plus le div#navprofil .gen qui va aussi sur les |. Je sais pas si je m'explique bien mais en gros le premier css met notre premiere bordure et le deuxieme bah la deuxiement bordure. Alors que nous on en veut qu'une seule!

Il faut donc enlever le css div#navprofil a.mainmenu{}
Izumi375

Izumi375
****

Féminin
Messages : 318
Inscrit(e) le : 30/08/2009

http://keikoku.forumpro.fr
Izumi375 a été remercié(e) par l'auteur de ce sujet.

Résolu Re: Apparence des liens dans profil

Message par ludoloveisa Ven 14 Juin - 17:36

Merci pour ton aide mais sa ne marche toujours pas ^^. Donc je vais laisser les lien "nu"

Encore merci
avatar

ludoloveisa
**

Masculin
Messages : 80
Inscrit(e) le : 21/07/2010

http://forbiddenforest.forumactif.org
ludoloveisa a été remercié(e) par l'auteur de ce sujet.

Résolu Re: Apparence des liens dans profil

Message par Izumi375 Sam 15 Juin - 11:36

Essaye juste un dernier truc: efface TOUT ton css (enregistre le dans un .txt dans un coin au cas où) puis remplace le par celui que je vais te passer (il s'agit de ton css avec mes modifications à moi). Ca marche chez moi, il n'y a pas de raison pour que ça plante chez toi 


Code:
#cadreava{
border-top: 6px solid #ceb078;
border-bottom: 6px solid #ceb078;
border-right: 2px solid #ceb078;
border-left: 2px solid #ceb078;
-moz-border-radius: 40px 0px 40px 0px;
-webkit-border-radius: 40px 0px 40px 0px;
-o-border-radius: 40px 0px 40px 0px;
border-radius: 40px 0px 40px 0px;
width: 150px;
}

#cadreava img{
-moz-border-radius: 40px 0px 40px 0px;
-webkit-border-radius: 40px 0px 40px 0px;
-o-border-radius: 40px 0px 40px 0px;
border-radius: 40px 0px 40px 0px;
}

#rang2{
margin-bottom: -41px;
}

#navpa{
margin-left: 50px;
}


@charset 'utf-8';
/*************************************************!
*
* project: liteAccordion - a horizontal accordion plugin for jQuery
* author: Nicola Hibbert
* url: http://nicolahibbert.com/liteaccordion-v2/
* demo: http://www.nicolahibbert.com/demo/liteAccordion/
*
* Version: 2.0.2
* Copyright: (c) 2010-2011 Nicola Hibbert
* Licence: MIT
*
**************************************************/
/****************************************** Core */
.accordion { text-align: left; font: 'Georgia', Verdana, Arial, sans-serif}
.accordion > ol { position: relative; overflow: hidden; height: 100%; margin-top: -3px; padding: 0; list-style-type: none }
.accordion .slide > h2 {
color: #;
font-size: 16px;
font-weight: bold;
margin: 0;
z-index: 100;
position: absolute;
top: 0;
left: 0;
-webkit-transform: translateX(-100%) rotate(-90deg);
-webkit-transform-origin: right top;
-moz-transform: translateX(-100%) rotate(-90deg);
-moz-transform-origin: right top;
-o-transform: translateX(-100%) rotate(-90deg);
-o-transform-origin: right top;
transform: translateX(-100%) rotate(-90deg);
transform-origin: right top;
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}
.accordion .slide > h2 span {
display: block;
padding-right: 8%;
text-align: right;
height: 90%;
margin-top: 5px;
-moz-user-select: none;
-khtml-user-select: none;
user-select: none;
}
.accordion .slide > h2 b {
display: inline-block;
position: absolute;
top: 13%;
left: 10%;
text-align: center;
-webkit-transform: rotate(90deg);
-moz-transform: rotate(90deg);
-o-transform: rotate(90deg);
transform: rotate(90deg);
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
}
.accordion .slide > h2:hover { cursor: url('http://www.patmax.eu/C2/130603165224.cur'), auto; }
.accordion .slide > div { height: 100%; position: absolute; top: 0; z-index: 10; overflow: hidden; background: white }
.accordion noscript p { padding: 10px; margin: 0; background: white }

/****************************************** Dark */
.accordion {
border: 0px solid #c69959;
background: #ceb078;
}
.accordion .slide > h2 { background: #c69959; text-shadow: 0 -1px 0 #96773c; line-height: 265%; }
.accordion .slide > h2 span { background: #ceb078; color: #f5edcb }
.accordion .slide > h2 b { background: #ceb078; color: #f5edcb; text-shadow: -2px 2px 0 #96773c }
.accordion .slide > h2.selected span, .accordion .slide > h2.selected span:hover {
background: #d39950;
background: -moz-linear-gradient(left, #c69959 0%, #ceb078 100%);
background: -webkit-gradient(linear, left top, right top, color-stop(0%,#c69959), color-stop(100%,#ceb078));
background: -webkit-linear-gradient(left, #c69959 0%,#ceb078 100%);
background: -o-linear-gradient(left, #c69959 0%,#ceb078 100%);
background: -ms-linear-gradient(left, #c69959 0%,#ceb078 100%);
background: linear-gradient(left, #c69959 0%,#ceb078 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c69959', endColorstr='#ceb078',GradientType=1 );
}
.accordion .slide > h2.selected b {
background: #d39950;
background: -moz-linear-gradient(top, #c69959 0%, #ceb078 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#c69959), color-stop(100%,#ceb078));
background: -webkit-linear-gradient(top, #c69959 0%,#ceb078 100%);
background: -o-linear-gradient(top, #c69959 0%,#ceb078 100%);
background: -ms-linear-gradient(top, #c69959 0%,#ceb078 100%);
background: linear-gradient(top, #c69959 0%,#ceb078 100%);
}
.accordion .slide > div { background: #f5edcb; margin-left: 0px;}

/*************************************** Rounded */
.rounded, .rounded > ol { -webkit-border-radius: 20px 0px 20px 0px; -moz-border-radius: 20px 0px 20px 0px; -ms-border-radius: 20px 0px 20px 0px; border-radius: 20px 0px 20px 0px }
.rounded .slide > h2 span { -webkit-border-radius: 0px; -moz-border-radius: 0px; -ms-border-radius: 0px; border-radius: 0px }

/******************************************** IE */
.ie .slide > h2 b { top: 42%; left: 5% }
.ie9 .slide > h2 { filter: none; -ms-transform: translateX(-100%) rotate(-90deg); -ms-transform-origin: right top }
.ie.accordion .slide > h2 b { top: 44% }
.ie9.accordion .slide > h2.selected span, .ie9.accordion .slide > h2.selected span:hover { filter: none }

/******************************************** FA */
.accordion figure .full { width: 100%; height: 100%; }
.accordion h2 { border: none; }

/* centrer l'accordéon */
.accordion { margin: auto; }


table
{
max-width: 910px;
margin: auto;
}

#taille img{
max-width: 150px;
max-height: 200px;
margin-top: -60px;
border-top: 6px solid #ceb078;
border-bottom: 6px solid #ceb078;
border-right: 2px solid #ceb078;
border-left: 2px solid #ceb078;
-moz-border-radius: 40px 0px 40px 0px;
-webkit-border-radius: 40px 0px 40px 0px;
-o-border-radius: 40px 0px 40px 0px;
border-radius: 40px 0px 40px 0px;
}

.cadratablo {

border: 1px solid #cacaca;
background-color: #cacaca;
-moz-border-radius: 0px 0px 7px 7px;
border-radius: 0px 0px 7px 7px;
-webkit-border-radius: 0px 0px 7px 7px;
border-radius: 2px;
padding: 2px 2px 2px 2px;
position: relative;
}

.cadratableau {border: 1px solid #cacaca;
background-color: #cacaca;
-moz-border-radius: 7px 7px 0px 0px;
border-radius: 7px 7px 0px 0px;
-webkit-border-radius: 7px 7px 0px 0px;
border-radius: 2px;
padding: 2px;}

.vignettes{

border-top: 1px solid #c69959;
border-bottom: 2px solid #ceb078;
border-right: 2px solid #ceb078;
border-left: 2px solid #ceb078;
border-radius: 0px 0px 10px 10px;
-moz-border-radius: 0px 0px 10px 10px;
-webkit-border-radius: 0px 0px 10px 10px;
-khtml-border-radius: 0px 0px 10px 10px;
background-color: #fdf2c3;
padding-right:10px;
padding-left: 10px;
padding-bottom: 5px;
padding-top:3px;
font-weight: bold;

}

.vignettes:hover
{

border-radius: 0px 0px 10px 10px;
-moz-border-radius: 0px 0px 10px 10px;
-webkit-border-radius: 0px 0px 10px 10px;
-khtml-border-radius: 0px 0px 10px 10px;
background-color: #fdf2c3;
padding-right:10px;
padding-left: 10px;
padding-bottom: 10px;
padding-top:3px;
}

#lastpost{
padding-left: 5px;
padding-right: 5px;
padding-top:15px;
height: 80px;
background-image: url('');
border-top: 6px solid #ceb078;
border-bottom: 6px solid #ceb078;
border-right: 2px solid #ceb078;
border-left: 2px solid #ceb078;
-moz-border-radius: 40px 0px 40px 0px;
-webkit-border-radius: 40px 0px 40px 0px;
-o-border-radius: 40px 0px 40px 0px;
border-radius: 40px 0px 40px 0px;
}

.name a {
font-size: 18px;
font-style : italic;
text-decoration: none!important;
text-shadow: #3e332f 1px 1px 2px;
text-transform: capitalize;
}

#ava img {
max-width: 150px;
max-height: 200px;
}

#rang{
margin-bottom: -40px;
}

#espace{
height: 150px;
padding-bottom: 55px;
margin-top: 20px;
}

dl.icon {
min-height: 55px;
background-position: left;
background-repeat: no-repeat;
height: auto !important;
}
ul.topics dt {
padding-left: 55+60px;
display: block;
float: left;
width: 50%;
}
.row dl.icon dt {
background-position: 55px 3px;
min-height: 55px;
height:auto !important
}

.postdetails.poster-profile a img {
border-top: 6px solid #ceb078;
border-bottom: 6px solid #ceb078;
border-right: 2px solid #ceb078;
border-left: 2px solid #ceb078;
-moz-border-radius: 40px 0px 40px 0px;
-webkit-border-radius: 40px 0px 40px 0px;
-o-border-radius: 40px 0px 40px 0px;
border-radius: 40px 0px 40px 0px;
}

#page-footer
{
background-image: url(http://nsa33.casimages.com/img/2013/06/03/130603085147849260.png);
background-repeat: no-repeat;
background-position: center;
width: 910;
height: 300px;
margin-bottom: -10px;
}

#emptyidcc{
margin-top : 30px;
}

body
{
background: url('http://nsa33.casimages.com/img/2013/06/02/130602030409349552.png') repeat-y center, url('http://nsa33.casimages.com/img/2013/06/02/130602110436898705.jpg') repeat center;
background-attachment: fixed, fixed;
background-color: #cfb079;
}

.bodylinewidth
{
width: 900px;
margin-left: auto;
margin-right: auto;
}

.bodyline
{
width: 900px;
padding: 0;
}

.mbodyline
{
width: 900px:
}

a
{
outline: none;
}

a:link
{
text-decoration: none !important;
}
a {
border-top-style: none;
border-right-style: none;
border-bottom-style: none;
border-left-style: none;
}

a:hover {
text-decoration: none !important;
text-shadow: #a78b4d 1px 1px 1px;
}

a.mainmenu
{
width: 910px;
margin: auto;
background: #fdf2c3;
border-top: 1px solid #c69959;
border-bottom: 2px solid #ceb078;
border-right: 2px solid #ceb078;
border-left: 2px solid #ceb078;
border-radius: 0px 0px 10px 10px;
-moz-border-radius: 0px 0px 10px 10px;
-webkit-border-radius: 0px 0px 10px 10px;
-khtml-border-radius: 0px 0px 10px 10px;
padding-bottom: 3px;
padding-top: 4px;
padding-left: 2px;
box-shadow: 0px 2px 3px #ceb078;
padding-right: 5px;
margin-left: -4px;
}

div#navprofil .gen{
border-top: 2px solid #ceb078;
border-right: 2px solid #ceb078;
border-left: 2px solid #ceb078;
border-radius: 10px 10px 0px 0px;
-moz-border-radius: 10px 10px 0px 0px;
-webkit-border-radius: 10px 10px 0px 0px;
-khtml-border-radius: 10px 10px 0px 0px;
}

a.mainmenu
{
font-weight: lighter;
font-size: 13px;
color: #dfcd9c;
font-family: georgia;
text-decoration: none !important;
text-align: center;
font-variant: small-caps;
}

a img {
border: none;
}

a.mainmenu:hover
{
color: #c69959 !important;
font-variant: small-caps;
font-size: 13px;
font-weight: bold;
font-style: italic;
}

a.forumlink
{
display: block;
width: 100%;
border-bottom: 2px dotted #5b715a !important;
padding: 4px;
font-size: 14px;
font-weight: bold;
font-variant: small-caps;
text-shadow: 0px 0px 2px #FFFFFF !important;
letter-spacing: 2px;
}

#i_logo
{
margin-top: -8px
margin-bottom: -53px;
}

.forumline
{
width: 100%;
border-bottom: 8px solid #ceb078;
border-top: 8px solid #ceb078;
border-left: 2px solid #ceb078;
border-right: 2px solid #ceb078;
margin-right: auto;
margin-left: auto;
margin-top: 3px;
margin-bottom: 10px;
padding-top: -1px;
background-color: #f5edcb;
-moz-border-radius: 40px 0px 40px 0px;
-webkit-border-radius: 40px 0px 40px 0px;
-o-border-radius: 40px 0px 40px 0px;
border-radius: 40px 0px 40px 0px;
h1,text-align: center;
}

#page-footer a
{
font-size: 12px;
}

table
{
width: 98%;
margin: auto;
}

.quote
{ background: url('http://nsa33.casimages.com/img/2013/05/01/130501031946549249.png') no-repeat right bottom, url('http://nsa33.casimages.com/img/2013/05/01/130501021246603202.png') no-repeat left top;
padding-left: 30px;
padding-right: 30px;
padding-top: 10px;
padding-bottom: 10px;
border-radius: 20px 0px 20px 0px;
-moz-border-radius: 20px 0px 20px 0px;
-webkit-border-radius: 20px 0px 20px 0px;
-khtml-border-radius: 20px 0px 20px 0px;
border-top: 3px solid #ceb078;
border-left: 3px solid #ceb078;
border-color: #ceb078;
}

.code
{
background: url('http://nsa34.casimages.com/img/2013/05/01/130501034217506394.png') no-repeat left top, url('http://nsa33.casimages.com/img/2013/05/01/130501034533588531.png') no-repeat right bottom;
padding-left: 30px;
padding-right: 30px;
height: 30px;
border-radius: 20px 0px 20px 0px;
-moz-border-radius: 20px 0px 20px 0px;
-webkit-border-radius: 20px 0px 20px 0px;
-khtml-border-radius: 20px 0px 20px 0px;
border-top: 3px solid #ceb078;
border-left: 3px solid #ceb078;
border-color: #ceb078;
}

.spoiler_closed
{
border-radius: 20px 0px 20px 0px;
-moz-border-radius: 20px 0px 20px 0px;
-webkit-border-radius: 20px 0px 20px 0px;
-khtml-border-radius: 20px 0px 20px 0px;
border-top: 3px solid #ceb078;
border-left: 3px solid #ceb078;
border-color: #ceb078;
}

.spoiler_content
{
background: url('http://nsa33.casimages.com/img/2013/05/19/130519125726157578.png') no-repeat left top, url('http://nsa34.casimages.com/img/2013/05/19/130519125811197921.png') no-repeat right bottom;
padding-left: 30px;
padding-right: 30px;
border-radius: 20px 0px 20px 0px;
-moz-border-radius: 20px 0px 20px 0px;
-webkit-border-radius: 20px 0px 20px 0px;
-khtml-border-radius: 20px 0px 20px 0px;
border-top: 3px solid #ceb078;
border-left: 3px solid #ceb078;
border-color: #ceb078;
}

.row3Right
{
border: none !important;
}
.thHead
{
border: none !important;
}
.thCornerL, .thCornerR, .thTop
{
border: none !important;
}
.thLeft, .thRight
{
border-left: none !important;
border-right: none !important;
}
.catLeft, .catRight
{
border: none! important;
}
.catHead
{
border: none !important;
}
.catBottom
{
border: none !important;
}

.mainoption
{
-moz-border-radius: 10px 0px 10px 0px;
-webkit-border-radius: 10px 0px 10px 0px;
-o-border-radius: 10px 0px 10px 0px;
border-radius: 10px 0px 10px 0px;
}

.liteoption
{
-moz-border-radius: 10px 0px 10px 0px;
-webkit-border-radius: 10px 0px 10px 0px;
-o-border-radius: 10px 0px 10px 0px;
border-radius: 10px 0px 10px 0px;
}

.opacite
{

opacity: 1;
-moz-opacity: 1;
-khtml-opacity: 1;
filter: alpha(opacity=1);
transition: opacity 2s;
-moz-transition: opacity 2s;
-o-transition: opacity 2s;
-webkit-transition: opacity 2s;
-htm-transition: opacity 2s;
}

.opacite:hover
{
opacity: 0.5;
-moz-opacity: 0.5;
-khtml-opacity: 0.5;
filter: alpha(opacity=50);
transition: opacity 1s;
-moz-transition: opacity 1s;
-o-transition: opacity 1s;
-webkit-transition: opacity 1s;
-htm-transition: opacity 1s;
}

#i_icon_mini_index {
height:1px;
}
#i_icon_mini_search {
height:1px;
}
#i_icon_mini_groups {
height:1px;
}
#i_icon_mini_message {
height:1px;
}
#i_icon_mini_logout {
height:1px;
}
#i_icon_mini_register {
height:1px;
}
#i_icon_mini_calendar {
height:1px;
}
#i_icon_mini_faq {
height:1px;
}
#i_icon_mini_members {
height:1px;
}
#i_icon_mini_profile {
height:1px;
}
#i_icon_mini_new_message {
height:1px;
}
#i_icon_mini_login {
height:1px;
}
#i_icon_mini_portal {
height:1px;
}

.trans .row1 {
background-color : transparent;
}

.form
{
margin: auto;
background-image: url('http://nsa34.casimages.com/img/2013/05/30/130530025939579782.png');
-moz-border-radius: 40px 0px 40px 0px;
-webkit-border-radius: 40px 0px 40px 0px;
-o-border-radius: 40px 0px 40px 0px;
border-radius: 40px 0px 40px 0px;
border-bottom: 8px #6f126f solid;
border-top: 1px #6f126f dotted;
border-right: 1px #6f126f dotted;
padding-bottom: 10px;
border-left: 3px #6f126f dotted;
h1,text-align: center;
border: 1px solid #6f126f;
background-color: #cacaca;
padding: 2px 2px 2px 2px;
position: relative;
}

.wysiwyg{
height: 100%;
width: 95% !important;
font-family: Georgina;
font-size: 13px;
color: #a28247;
}

#text_editor_iframe, textarea.inputbox, textarea.post {
height: 100%;
width: 95% !important;
}

textarea#text_editor_textarea {
width: 95% !important;
}

form#quick_reply textarea#text_editor_textarea {
height: 100%;
width: 95% !important;
}

#text_editor_iframe {
-moz-border-radius: 40px 0px 40px 0px;
-webkit-border-radius: 40px 0px 40px 0px;
-o-border-radius: 40px 0px 40px 0px;
border-radius: 40px 0px 40px 0px;
}

#text_editor_iframe, textarea {
-moz-border-radius: 40px 0px 40px 0px;
-webkit-border-radius: 40px 0px 40px 0px;
-o-border-radius: 40px 0px 40px 0px;
border-radius: 40px 0px 40px 0px;
background-image: url('http://nsa33.casimages.com/img/2013/06/03/130603032345736797.jpg');
background-position: center;
background-repeat: repeat;
border-bottom: 8px solid #ceb078;
border-top: 8px solid #ceb078;
border-left: 2px solid #ceb078;
border-right: 2px solid #ceb078;
padding-top: 4px;
padding-left: 20px;
padding-bottom : 5px;
}

#quick_reply textarea#text_editor_textarea{
height: 100%;
width: 95% !important;
}

.postbody {
text-align:justify;
}

.colorpicker {
width: 356px;
height: 176px;
overflow: hidden;
position: absolute;
background: url(http://nsa34.casimages.com/img/2013/06/03/130603033435374957.jpg);
font-family: Arial, Helvetica, sans-serif;
display: none;
}
.colorpicker_color {
width: 150px;
height: 150px;
left: 14px;
top: 13px;
position: absolute;
background: #f00;
overflow: hidden;
cursor: crosshair;
}
.colorpicker_color div {
position: absolute;
top: 0;
left: 0;
width: 150px;
height: 150px;
background: url(http://tinyurl.com/colorpickerimg/colorpicker_overlay.png);
}
.colorpicker_color div div {
position: absolute;
top: 0;
left: 0;
width: 11px;
height: 11px;
overflow: hidden;
background: url(http://tinyurl.com/colorpickerimg/colorpicker_select.gif);
margin: -5px 0 0 -5px;
}
.colorpicker_hue {
position: absolute;
top: 13px;
left: 171px;
width: 35px;
height: 150px;
cursor: n-resize;
}
.colorpicker_hue div {
position: absolute;
width: 35px;
height: 9px;
overflow: hidden;
background: url(http://tinyurl.com/colorpickerimg/colorpicker_indic.gif) left top;
margin: -4px 0 0 0;
left: 0px;
}
.colorpicker_new_color {
position: absolute;
width: 60px;
height: 30px;
left: 213px;
top: 13px;
background: #f00;
}
.colorpicker_current_color {
position: absolute;
width: 60px;
height: 30px;
left: 283px;
top: 13px;
background: #f00;
}
.colorpicker input {
background-color: transparent;
border: 1px solid transparent;
position: absolute;
font-size: 10px;
font-family: Arial, Helvetica, sans-serif;
color: #898989;
top: 4px;
right: 11px;
text-align: right;
margin: 0;
padding: 0;
height: 11px;
}
.colorpicker_hex {
position: absolute;
width: 72px;
height: 22px;
background: url(http://nsa33.casimages.com/img/2013/06/03/130603034619702608.jpg) top;
left: 212px;
top: 142px;
}
.colorpicker_hex input {
right: 6px;
}
.colorpicker_field {
height: 22px;
width: 62px;
background-position: top;
position: absolute;
}
.colorpicker_field span {
position: absolute;
width: 12px;
height: 22px;
overflow: hidden;
top: 0;
right: 0;
cursor: n-resize;
}
.colorpicker_rgb_r {
background-image: url(http://nsa34.casimages.com/img/2013/06/03/130603034650970801.jpg);
top: 52px;
left: 212px;
}
.colorpicker_rgb_g {
background-image: url(http://nsa33.casimages.com/img/2013/06/03/1306030347498271.jpg);
top: 82px;
left: 212px;
}
.colorpicker_rgb_b {
background-image: url(http://nsa33.casimages.com/img/2013/06/03/130603034848690436.jpg);
top: 112px;
left: 212px;
}
.colorpicker_hsb_h {
background-image: url(http://nsa34.casimages.com/img/2013/06/03/130603034941674338.jpg);
top: 52px;
left: 282px;
}
.colorpicker_hsb_s {
background-image: url(http://nsa33.casimages.com/img/2013/06/03/130603035037629284.jpg);
top: 82px;
left: 282px;
}
.colorpicker_hsb_b {
background-image: url(http://nsa33.casimages.com/img/2013/06/03/1306030347498271.jpg);
top: 112px;
left: 282px;
}
.colorpicker_submit {
position: absolute;
width: 22px;
height: 22px;
background: url(http://nsa33.casimages.com/img/2013/06/03/130603035238945202.jpg) top;
left: 322px;
top: 142px;
overflow: hidden;
}
.colorpicker_focus {
background-position: center;
}
.colorpicker_hex.colorpicker_focus {
background-position: bottom;
}
.colorpicker_submit.colorpicker_focus {
background-position: bottom;
}
.colorpicker_slider {
background-position: bottom;
}

body {
cursor: url('http://www.patmax.eu/C2/130603164950.cur'), auto;
}

a {
cursor: url('http://www.patmax.eu/C2/130603165224.cur'), auto;
}

body.chatbox,#chatbox_header{background-color: #f5edcb;}

#frame_chatbox {
-moz-border-radius: 40px 0px 40px 0px;
-webkit-border-radius: 40px 0px 40px 0px;
-o-border-radius: 40px 0px 40px 0px;
border-radius: 40px 0px 40px 0px;
}

Izumi375

Izumi375
****

Féminin
Messages : 318
Inscrit(e) le : 30/08/2009

http://keikoku.forumpro.fr
Izumi375 a été remercié(e) par l'auteur de ce sujet.

Résolu Re: Apparence des liens dans profil

Message par ludoloveisa Sam 15 Juin - 15:43

Bonjour,

Merci beaucoup pour votre persévérance^^ Malheureusement, après avoir supprimé mon css et le remplacer par celui que vous me proposez, le résultat est le même...
avatar

ludoloveisa
**

Masculin
Messages : 80
Inscrit(e) le : 21/07/2010

http://forbiddenforest.forumactif.org
ludoloveisa a été remercié(e) par l'auteur de ce sujet.

Voir le sujet précédent Voir le sujet suivant Revenir en haut

- Sujets similaires

Permission de ce forum:
Vous ne pouvez pas répondre aux sujets dans ce forum