FreeWeb » I tuoi sogni diventano realtà

1 user(s) online
F_ACTIVE
1 guests
0 members
0 Anonymous Members
[ View Complete List ]


Statistics
F_STATS
FreeWeb » I tuoi sogni diventano realtà have:
29 articles, 9 comments, 379 members,
9,063 total visits, 18 monthly visits,
208º in Top Blog

The newest member is Gianluca Lastra

Most users ever online was 125 on 26/10/2009, 16:52


B_NORM    
view post Posted on 19/11/2009, 16:16 by: Aier
Questo script va inserito in Gestione codici html image> in cima al forum.
In pratica grazie a questo script, quando clicchi sul nome dell'utente in questione (ad esempio) appare una immagine al posto del profilo, quindi lo rende privato:


CODE
<script type="text/javascript">
if ( location.search.indexOf('?act=Profile&MID=IDUTENTE')!=-1 )
{document.write("<img src="http://indirizzo_immagine.gif"><div class="nascosta">")}</script>




SPOILER (click to view)
by Sweet Legend.
Comments: 0 | Views: 52Last Post by: Aier (19/11/2009, 16:16)
 

B_NORM    
view post Posted on 19/11/2009, 16:04 by: Aier
Il codice permette di far trillare un immagine va inserito in questo modo:

Esempio dell'effetto -> http://immaginichetrillano.forumfree.net/

# Nella Gestione HTML inseriamo:


CODE
HTML
<style>
.shakeimage{
position:relative
}
</style>
<script type="text/javascript">

/*
Shake image script (onMouseover)-
© Dynamic Drive (www.dynamicdrive.com)
For full source code, usage terms, and 100's more DHTML scripts, visit http://dynamicdrive.com
*/

//configure shake degree (where larger # equals greater shake)
var rector=3

///////DONE EDITTING///////////
var stopit=0
var a=1

function init(which){
stopit=0
shake=which
shake.style.left=0
shake.style.top=0
}

function rattleimage(){
if ((!document.all&&!document.getElementById)||stopit==1)
return
if (a==1){
shake.style.top=parseInt(shake.style.top)+rector
}
else if (a==2){
shake.style.left=parseInt(shake.style.left)+rector
}
else if (a==3){
shake.style.top=parseInt(shake.style.top)-rector
}
else{
shake.style.left=parseInt(shake.style.left)-rector
}
if (a<4)
a++
else
a=1
setTimeout("rattleimage()",50)
}

function stoprattle(which){
stopit=1
which.style.left=0
which.style.top=0
}

"color:#03C"></script>


# Per dare l'effetto a un immagine bisogna usare questo HTML:


CODE
<img src="QUI_IL_LINK_IMMAGINE" class="shakeimage" onMouseover="init(this);rattleimage()" onMouseout="stoprattle(this);top.focus()" onClick="top.focus()"border="0" alt="descrizione>

------------------------------------

Per far trillare le targhette bisogna usare questa class:

CODE
a:hover .s {filter: blur}
Comments: 0 | Views: 50Last Post by: Aier (19/11/2009, 16:04)
 

B_NORM    
view post Posted on 19/11/2009, 15:59 by: Aier
Come nascondere la scritta moderato da :sisi: :

Per nascondere la scritta moderato da bisogna andare in:
Amministrazione/Gestione sezioni
Inserite questo codice

CODE
</span><p class="nascosta"><span>

nella descrizione della sezione .
Comments: 0 | Views: 56Last Post by: Aier (19/11/2009, 15:59)
 

B_NORM    
view post Posted on 19/11/2009, 15:57 by: Aier
Questo form permettere di inviare un nuovo messaggio in una discussione aperte.

CODE
<form action="INDIRIZZOFORUM" method="post" name="REPLIER">
<input type="hidden" name="st" value="0">
<input type="hidden" name="act" value="Post">
<input type="hidden" name="f" value="IDSEZIONE">
<input type="hidden" name="CODE" value="03">
<input type="hidden" name="t" value="IDTOPIC">
<input type="hidden" name="Post" value="MESSAGGIO">
<input type="submit" name="submit" value="TESTO BOTTONE" class="forminput">
</form>
<!-- Fine bottoneauto post-->

Bisogna cambiare
INDIRIZZOFORUM = Con il link del forum;
IDSEZIONE = Id della sezione
IDTOPIC = Dovete sostituirlo con ID del topic dove il bottone deve rispondere
Messaggio = con Il messaggio che il bottone deve inviare
TESTO BOTTONE = Il testo del bottone
Comments: 0 | Views: 52Last Post by: Aier (19/11/2009, 15:57)
 

B_NORM    
view post Posted on 17/11/2009, 23:44 by: Memento
TESTO TESTO

CODICE
<fieldset>TESTO TESTO</fieldset>
Comments: 0 | Views: 47Last Post by: Memento (17/11/2009, 23:44)
 

B_NORM    
view post Posted on 17/11/2009, 23:42 by: Memento
Per eventuali personalizzazioni andate in Modifica colori e stili e modificate i seguenti selettori:

CODICE
/* IMMAGINE DI SFONDO TAG */

.tag .skin_tbl_border, .tag .mainbg {background-image:url(http://indirizzo_immagine); background-repeat: repeat}

.tag .ww, .tag .aa, .tag .aa .aa {background: inherit; border:0}


Al posto di dove vedi http://indirizzo_immagine, andrai ad inserire l'effettivo indirizzo dell'immagine che vuoi inserire come sfondo.


CODICE
background-repeat: repeat

questa dichiarazione fa si che l'immagine di sfondo si ripeta sia orizzontalmente che verticalmente, se non vuoi che l'immagine si ripeta inserisci no-repeat.

Se vuoi invece che l'immagine abbia ipoteticamente una disposizione particolare rispetto alla tag board, andrai ad inserire subito dopo a quanto detto prima ;background-position:, seguito da center, left o right a seconda delle tue esigenze.
Comments: 0 | Views: 51Last Post by: Memento (17/11/2009, 23:42)
 

B_NORM    
view post Posted on 17/11/2009, 23:41 by: Memento
Per aggiungere un altro blocco alle statistiche (oltre ad stats & active) è sufficente inserire questo codice in
Gestione codici HTML>In homepage del sito

CODICE
<script type="text/javascript">stats='<br> <tr><td class="sunbar" colspan="2">Prova<tr><td class="ww" width="5%" align="center"><img src="LINK IMMAGINE"><td class="aa" width="95%">Testo</script>
Comments: 0 | Views: 45Last Post by: Memento (17/11/2009, 23:41)
 

B_NORM    
view post Posted on 17/11/2009, 23:40 by: Memento
Cos'è una Favicon?
Sta per Favourites Icon (icona dei "preferiti") e indica l'icona che compare accanto al nome di un sito posto nei preferiti o nella barra del browser di fianco all'url (non si vede su Internet Explorer 6 e versioni precedenti).

image

Come averne una
È possibile personalizzare l'icona associata al proprio forum in Nome e dominio forum. Bisogna selezionare dal proprio computer un file d'estensione .ico, di dimensioni 16x16 pixel. Può succedere che una volta cambiata la favicon venga visualizzata ancora quella vecchia, basterà cancellare la cache per ovviare a questo problema.

Come realizzare un file .ico
È possibile convertire un'immagine, sia essa .gif o .png, in file .ico con uno dei due form seguenti:
http://www.html-kit.com/e/favicon.cgi
http://tools.dynamicdrive.com/favicon


SPOILER (click to view)
Credits for Nirvana
Comments: 0 | Views: 48Last Post by: Memento (17/11/2009, 23:40)
 

B_NORM    
view post Posted on 27/8/2009, 13:47 by: buymore
Va inserito in Amministrazione - Modifica Colori e Stili

  • CODICE
    #f3476517 img {display:none} #f3476517 .xx, #f3476517 .yy, #f3476517 .zz, #f3476517 .aa, #f3476517 .bb { -TITLE- line-height:80%} #f3476517 .web {color: #XXX; font-size:11px;} #f3476517 .xx, #f3476517 .yy, #f3476517 .zz {font-size: 0; color: #XXX} #f3476517 .xx br, #f3476517 .yy br, #f3476517 .zz br {display:none}

al posto di 3476517 va inserito l'ID della sezione che è stata creata per fare da "spazio".
al posto di -TITLE- va inserita la dichiarazione che è presente in modifica colori e stili .title
al posto di #XXX il colore scelto per il testo di separazione, e nel secondo caso il colore più simile allo sfondo per eliminare l'imperfezione data da IE

in gestione sezioni nel campo nome sezione va inserito

  • CODICE
    </a>Nome separatore

Comments: 0 | Views: 68Last Post by: buymore (27/8/2009, 13:47)
 

B_NORM    
view post Posted on 27/8/2009, 13:44 by: buymore
Va inserito in Amministrazione > Modifica colori e stile

  • CODICE
    .web a:link img, .web a:visited img {filter:alpha(opacity=30); -moz-opacity: 0.5; opacity: 0.5} .web a:hover img {filter:alpha(opacity=100); -moz-opacity: 1.0; opacity: 1.0}

Comments: 0 | Views: 57Last Post by: buymore (27/8/2009, 13:44)
 

Search: