SOS-FORUM
Vous souhaitez réagir à ce message ? Créez un compte en quelques clics ou connectez-vous pour continuer.
SOS-FORUM

Derniers sujets

» Silence Inside Me - Ouverture
par Solitude 3/3/2018, 12:36

» ATLANTIC CITY - rpg city
par Solitude 15/3/2017, 10:41

» Bonne Année 2015
par Yoda 5/3/2017, 20:12

» Rio de Janeiro
par Solitude 14/9/2015, 15:34

» Bon Anniversaire Zeco
par Laurent 29/5/2015, 06:29

Le Deal du moment : -20%
Ecran PC GIGABYTE 28″ LED M28U 4K ( IPS, 1 ms, ...
Voir le deal
399 €

Vous n'êtes pas connecté. Connectez-vous ou enregistrez-vous

Voir le sujet précédent Voir le sujet suivant Aller en bas  Message [Page 1 sur 1]

1Codes... Empty Codes... 2/4/2010, 14:39

Elii01
Elii01
(Membre)
I want to know the codes of the these efects:

1. Here In the first comment there is a table.. when you pass the mouse by "Id Card" or "Poke Team" the information of that table change... and when you pass the mouse for the pokemons in "Poke Team" a table change too!!

2. Here The form to forums tittle have (Vie do forum, Liaison avec le Staf, Présetantion..)

3. HereThe background image of the profil.

4. Here The form of the each "Derniers Messages" have... (in there say the last message, hour to it publication and who is the publicator... also the numbers of messages).

5. Here The QEEL of this forum


Is possible...?

1. Is possible put the widgets like that page: http://mademoiselle-art.com/??

2. Is possible editer the FAQ?? Delete somethings??

3. Is posibble put the "Profils" like this: http://forum.mininova.org/index.php?showuser=188618 ???

4. Is possible to ALWAYS and ALL the signatures appear in spoilers??

5. Is possible put the "Groups" of the version phpBB2 like Invision?
Spoiler:



Dernière édition par Elii01 le 3/4/2010, 15:30, édité 1 fois

2Codes... Empty Re: Codes... 3/4/2010, 15:29

Zeco
Zeco
Administrateur absent
http://digs.forumactif.com/forum
Hello...
I was going to say "12 questions = 12 topics", but...

Anyway, let's attack those questions : by what do we start ?

3Codes... Empty Re: Codes... 3/4/2010, 15:54

Elii01
Elii01
(Membre)
Well... we can begin by... the first question?? And say me if the "Is possible..." can possible xD

4Codes... Empty Re: Codes... 4/4/2010, 16:22

Zeco
Zeco
Administrateur absent
http://digs.forumactif.com/forum
1- Using a Javascript. Is it ok for you tu use this ? We have to create functions.

2- Using a class in html tag, then put a background image by CSS.
Code:
<div class="something">Title</div>

.something {background: url('image') top left no-repeat; padding : 5px;

3- For what version ? Did you modify our templates ?

4- Yes, possible, but we have to modify index_box template.

5- Doing something similar to that one is possible, but I'm not going to copy their code.

6- Long to do, but possible.

7- Edit yes, delete no.

8- Can I have a screenshot ?

9- Yes, by template editing.

10- I think it's possible, but very hard and long to do... I never tried.

5Codes... Empty Re: Codes... 4/4/2010, 17:14

Elii01
Elii01
(Membre)
1. Mmm.. I want that when you go to that page (will include an HTML page), have a rectangle (like the example) at right, only i want the rectangle always stay there, although your go up and down the rectangle will show.

And when you passing the mouse over the titles of books (located at the left) in the box will appear: the cover of the book, and the synopsis, like this:

Code:
<img style="float: left; margin: 0pt 5px 5px 0pt; width: 168px; height: 249px;" src="URL IMAGE" alt="" border="0" />
<div style="overflow-y: scroll; width: 300px; height: 249px;" align="left">SYNOPSIS</div>


2. Thanks Very Happy

3. phpBB2

4. Thanks again... but, can you say the the code pleeease???

5. I know how Very Happy

6. :O OMG! << (Oh my god xD) Is possible?? You can send me the code of the first module widget and i do the rest!! Please ^^

7. Oh Sad I was hoping to erase everything and do it with my forum rules

8.
Spoiler:

9. :O :O Yes?? ^^ Very Happy The code please Very Happy

10. :O :O :O Is possible too?? Oh my god! you are the man of the possibilities! xDD i love you! xDD Mmm.. The possibility exists that you want me to code?? Please Codes... Abrazo10

6Codes... Empty Re: Codes... 5/4/2010, 11:40

Zeco
Zeco
Administrateur absent
http://digs.forumactif.com/forum
Let's attack the first one.

Create a new HTML page, and write this :

Code:
function showone()
{
document.getElementById('firstarea').style.display='block';
document.getElementById('secondarea').style.display='none';
}

function showtwo()
{
document.getElementById('secondarea').style.display='block';
document.getElementById('firstarea').style.display='none';
}

Confirm. Then, go to your templates, overall_header_new, and add this code the end of the head tag.
Code:
<script type="text/javascript" src="your_html_page_url"></script>

Now, the codes.
For the buttons :

Code:
<span class="specialbutton" onclick="javascript:showone()">Show First Area</span>
<span class="specialbutton" onclick="javascript:showtwo()">Show Second Area</span>

And for the areas :
Code:
<div id="firstarea" style="display: block;">First and visible area.</div>
<div id="secondarea" style="display: hidden;">Second and hidden area.</div>

I think everything is ok. You just have to put the two "div" areas at the same place.

To customize them, add this to your CSS :

Code:
.specialbutton {buttons' properties}
#firstarea {First zone's properties}
#secondarea {Second zone's properties}

Oh, I warn you : using this code will work with one of each divs by page.
You mustn't have two divs called "secondarea" in the same page.

7Codes... Empty Re: Codes... 6/4/2010, 04:21

Elii01
Elii01
(Membre)
In the page isn't see the effect =/

Only show:

Code:
function showone()
{
document.getElementById('firstarea').style.display='block';
document.getElementById('secondarea').style.display='none';
}

function showtwo()
{
document.getElementById('secondarea').style.display='block';
document.getElementById('firstarea').style.display='none';
}


And i paste this exactly before
Code:
</head>
is it right?

Code:
<script type="text/javascript" src="HTML URL"></script>


You will hate me... is possible that is rectangle always is in the right ok? but... when you pass the mouse by the any book tittle of the left... appear the information in the rectangle... and have the two onglets

Sorry... i did a reunion with my forum Staff, and a girl can't be there and send me this idea today....

8Codes... Empty Re: Codes... 6/4/2010, 20:37

Zeco
Zeco
Administrateur absent
http://digs.forumactif.com/forum
Hello...

Hum, we're going to get lost. Open new topics, and only one question by topic this time.

Another thing : for questions 3, 4, 5... I'm not going to copy their codes.


Contenu sponsorisé

Voir le sujet précédent Voir le sujet suivant Revenir en haut  Message [Page 1 sur 1]

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

 
  •  

Créer un forum | ©phpBB | Forum gratuit d'entraide | Signaler un abus | Forum gratuit

Ne ratez plus aucun deal !
Abonnez-vous pour recevoir par notification une sélection des meilleurs deals chaque jour.
IgnorerAutoriser