Pagina 1 di 2 1 2 ultimoultimo
Visualizzazione dei risultati da 1 a 10 su 11

Discussione: problemi d scrittura

  1. #1

    problemi d scrittura

    ciao. ho un sito http://www.gemmedigrazia.com e non riesco a capire come mai tutti i caratteri con gli accenti mi escono in modo strano. Potreste dare un okkiata x favore e dirmi il problema? A questo indirizzo trovate una delle pagine cn l'errore. http://www.gemmedigrazia.com/sermonistudi.asp

    vi ringrazio

  2. #2
    Moderatrice di Grafica, Cerco e offro lavoro L'avatar di Myaku
    Registrato dal
    Nov 2006
    Messaggi
    10,349
    prova a rendere le lettere accentate con le corrispettive entitą

    es. ą --> à


  3. #3

    Re: problemi d scrittura

    Originariamente inviato da gant85
    ciao. ho un sito http://www.gemmedigrazia.com e non riesco a capire come mai tutti i caratteri con gli accenti mi escono in modo strano. Potreste dare un okkiata x favore e dirmi il problema? A questo indirizzo trovate una delle pagine cn l'errore. http://www.gemmedigrazia.com/sermonistudi.asp

    vi ringrazio
    problema di charset nell'intestazione della pagina forse ?

    link o codice please

  4. #4
    forse č perchč ho troppi include nelle pagine? cmq vi riporto il codice d ogni pagina. il link č http://www.gemmedigrazia.com/bibbia.asp

    pagina top.asp
    codice:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    
    <head>
    	<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    	<meta http-equiv="Content-Language" content="it">
    	<meta name="Robots" content="All">
    	<meta name="description" content="Risorse evangeliche">
    	<meta name="Owner" content="Gemme di Grazia"> 
    	<meta name="Copyright" content="Gemme di Grazia 2008">
    	<meta name="keywords" content="grazia, gemme di grazia, grazia, cristo, gesł, dio, amore, fede, speranza, evangelica,evangelo, evangeliche, chiese, chiesa, risorse, fratello, sorella, pastore, prediche, sermoni, studi, libri, rubriche, immagini, testimonianze, spirito santo, trinitą, apocalisse, eterno, altissimo, onnipotente, assemblee di dio, cristiane, cristiano, pentecostale, pentecostali, comunitą, fede, cuore, comunione, attivitą, ricerche, elohim, Chiesa cristiana Evangelica, Assemblee di Dio in Italia, chiesa, cristianesimo, evangelici pentecostali, fede evangelica, religione, culti, sčtte, curiositą, gratis, free, preghiera, Gesu' Cristo, bibbia, parola di Dio, articoli, riflessioni, testimonianze, raccolta, studi biblici, meditazioni, domande, informazioni, musica cristiana, testi, risorse gratuite,  indirizzi, comunitą">
    	<meta name="Author" content="Antonio Galasso gant85@hotmail.com">
    <link rel="stylesheet" type="text/css" href="css/style.css">
    <script language="javascript">AC_FL_RunContent = 0;</script>
    <script src="js/AC_RunActiveContent.js" language="javascript"></script>
    <link rel="stylesheet" type="text/css" href="css/menu.css">
    <link rel="SHORTCUT ICON" href="favicon.ico">
    <script type="text/javascript" src="js/DropDownMenuX.js"></script>
    <script type="text/javascript" src="js/webtookit.openwindow.js"></script>
    <title>Gemme di Grazia</title>
    <script type="text/javascript">
    	new scrollObject("scr1", 400, 60, "up", 5000, 1.15);
    	function scrollObject(main, width, height, direct, pause, speed) {
    	  var self = this;
    	  this.main = main;
    	  this.width = width;
    	  this.height = height;
    	  this.direct = direct;
    	  this.pause = pause;
    	  this.speed = Math.max(1.001, Math.min((direct == "up" || direct == "down") ? height : width, speed));
    	  this.slope = (direct == "up" || direct == "left") ? 1 : -1;
    	  this.prev = this.offset = 0;
    	  this.curr = 1;
    	  this.mouse = false;
    	  this.scroll = function() {
    	    this.main = document.getElementById(this.main);
    	    this.main.style.overflow = "hidden";
    	    this.main.style.position = "relative";
    	    this.main.style.width = this.width + "px";
    	    this.main.style.height = this.height + "px";
    	    var b = [], c;
    	    while (this.main.firstChild) if ((c = this.main.removeChild(this.main.firstChild)).nodeName == "DIV") b.push(c);
    	    for (var x = 0; x < b.length; x++) {
    	      var table = document.createElement('table');
    	          table.cellPadding = table.cellSpacing = table.border = "0";
       	          table.style.background = "#ffffff";
    	          table.style.position = "absolute";
    	          table.style.left = table.style.top = "0px";
    	          table.style.width = table.style.height = "100%";
    	          table.style.overflow = table.style.visibility = "hidden";
    	        var tbody = document.createElement('tbody');
    	          var tr = document.createElement('tr');
    	            var td = document.createElement('td');
    	              while (b[x].firstChild)
    	                  td.appendChild(b[x].removeChild(b[x].firstChild));
    	              tr.appendChild(td);
    	            tbody.appendChild(tr);
    	          table.appendChild(tbody);
    	      this.main.appendChild(table);
    	    } b = c = null;
    	    if (this.main.childNodes.length > 1) {
    	      this.main.onmouseover = function() { self.mouse = true; };
    	      this.main.onmouseout = function() { self.mouse = false; };
    	      setInterval(function() {
    	        if (!self.offset && self.scrollLoop()) self.main.childNodes[self.curr].style.visibility = "visible";
    	      }, this.pause);
    	    } this.main.childNodes[this.prev].style.visibility = "visible";
    	  };
    	  this.scrollLoop = function() {
    	    if (!this.offset) {
    	      if (this.mouse) return false;
    	      this.offset = (this.direct == "up" || this.direct == "down") ? this.height : this.width;
    	    } else this.offset = Math.floor(this.offset / this.speed);
    	    if (this.direct == "up" || this.direct == "down") {
    	      this.main.childNodes[this.curr].style.top = (this.offset * this.slope) + "px";
    	      this.main.childNodes[this.prev].style.top = ((this.offset - this.height) * this.slope) + "px";
    	    } else {
    	      this.main.childNodes[this.curr].style.left = (this.offset * this.slope) + "px";
    	      this.main.childNodes[this.prev].style.left = ((this.offset - this.width) * this.slope) + "px";
    	    }
    	    if (!this.offset) {
    	      this.main.childNodes[this.prev].style.visibility = "hidden";
    	      this.prev = this.curr;
    	      if (++this.curr >= this.main.childNodes.length) this.curr = 0;
    	    } else setTimeout(function() { self.scrollLoop(); }, 30);
    	    return true;
    	  };
    	  if (window.addEventListener) {
    	    window.addEventListener('load', function() { self.scroll(); }, false); 
    	  } else if (window.attachEvent)
    	    window.attachEvent('onload', function() { self.scroll(); });
    	}
    </script>
    
    </head>
    
    <body>
    	<div style="width:900px;position:absolute;left:50%;margin-left:-450px;background-color:#DDFBFF">
    		<table style="width: 900px" cellspacing="0" cellpadding="0" align="center">
    			<tr>
    				<td style="font-size:x-small;color:#4682b4">
    					<marquee scrollamount="4" scrolldelay="80">
    						<SCRIPT LANGUAGE="JavaScript">MyRandomMess()</SCRIPT></marquee>
    				</td>
    			</tr>
    			<tr>
    				<td>
    			[img]images/top1.gif[/img]
    			<map name="m_top1" id="m_top1">
    				<area shape="poly" coords="15,11,13,157,230,156,219,104,146,55,128,16" href="http://www.gemmedigrazia.com/home.asp" alt="">
    			</map>
    				</td>
    			</tr>
    			<tr>
    				<td></td>
    			</tr>
    		</table>

  5. #5
    pagina bibbia.asp
    codice:
    <table style="width: 900px" cellspacing="0" cellpadding="0" align="center">
    	<tr>
    		<td style="width: 158px"></td>
    		<td style="width: 403px"></td>
    		<td></td>
    	</tr>
    	<tr>
    		<td style="width: 158px">
    		</td>
    		<td style="width: 403px"></td>
    		<td></td>
    	</tr>
    	<tr>
    		<td valign="top"></td>
    		<td style="width: 100%" valign="top">
    		<table style="width: 95%" cellspacing="0" cellpadding="0" align="center">
    		<tr>
    				<td><span style="font-size:x-small">HOME - 
    				Bibbia - Bibbia</span></td>
    		</tr>
    		<tr>
    				<td></td>
    		</tr>
    			<tr>
    				<td>
    				<table cellspacing="0" cellpadding="0" style="width:400px;height:56px"><tr><td class="style2">
    					BIBBIA</td></tr></table>
    				</td>
    			</tr>
    			<tr>
    				<td colspan="3"></td>
    			</tr>
    			<tr>
    				<td class="style4" colspan="3">
    				
    		<table style="width: 95%;  background-color:white" cellspacing="0" cellpadding="0" align="center">
    			<tr>
    				<td colspan="2"></td>
    			</tr>
    			<tr>
    				<td colspan="2">
    				[img]images/1764445.jpg[/img]</td>
    			</tr>
    			<tr>
    				<td colspan="2"></td>
    			</tr>
    			<tr>
    				<td style="width: 50%" valign="top">
                          VECCHIO TESTAMENTO
    
    						
    
    						PENTATEUCO
    
    						Genesi
    
    						Esodo
    						
    
                          Levitico
    						
    
                          Numeri
    						
    
                          Deuteronomio
    						
    
    						
    
    						LIBRI STORICI
    
                          Giosuč
    						
    
                          Giudici
    						
    
                          Ruth
    						
    
                          I Samuele
    						
    
                          II Samuele
    						
    
                          I Re
    						
    
                          II Re
    						
    
                          I Cronache
    						
    
                          II Cronache
    						
    
                          Esdra
    						
    
                          Nehemia
    						
    
                          Ester
    						
    
    						
    
    						LIBRI POETICI
    
                          Giobbe
    						
    
                          Salmi
    						
    
                          Proverbi
    						
    
                          Ecclesiaste
    						
    
                          Cantico dei Cantici
    						
    
    						
    
    						LIBRI PROFETICI
    
                          Isaia
    						
    
                          Geremia
    						
    
                          Lamentazioni
    						
    
                          Ezechiele
    						
    
                          Daniele
    						
    
                          Osea
    						
    
                          Gioele
    						
    
                          Abdia
    
    						
    
                          Malachia
    						
    
    						
    
    
                    </td>
    				<td style="width: 50%" valign="top">
    						NUOVO TESTAMENTO
    
    						
    
    						EVAGELI
    
                          Matteo
    						
    
                          Marco
    						
    
                          Luca
    						
    
                          Giovanni
    
    						
    
       					  Atti
    
    						
    						
    
    						EPISTOLE DI SAN PAOLO
    
                          Romani
    						
    
                          I Corinzi
    						
    
                          II Corinzi
    						
    
                          Galati
    						
    
                          Efesini
    						
    
                          Filippesi
    						
    
                          Colossesi
    						
    
                          I Tessalonicesi
    						
    
                          II Tessalonicesi
    						
    
                          I Timoteo
    						
    
                          II Timoteo
    						
    
                          Tito
    						
    
                          Filemone
    						
    
    						
    
                          Ebrei
    						
    
    						
    
    						EPISTOLE CATTOLICHE
    
                          Giacomo
                          
    
                          I Pietro
    						
    
                          II Pietro
    						
    
                          I Giovanni
    						
    
                          II Giovanni
    						
    
                          III Giovanni
    						
    
                          Giuda
    						
    
    						
    
                          Apocalisse
                    </td>
    			</tr>
    			<tr>
    				<td colspan="2">
    				</td>
    			</tr>
    		</table>
    
    				
    				</td>
    			</tr>
    			<tr>
    				<td colspan="3"></td>
    			</tr>
    		</table>
    		</td>
    		<td valign="top"></td>
    	</tr>
    	<tr>
    		<td style="width: 158px"></td>
    		<td style="width: 403px"></td>
    		<td></td>
    	</tr>
    </table>

  6. #6
    pagina footer.asp
    codice:
    <table style="width: 900px; background-color:#DDFBFF"  cellspacing="0" cellpadding="0" align="center">
    	<tr>
    		<td colspan="4"></td>
    	</tr>
    	<tr>
    		<td colspan="4"></td>
    	</tr>
    	<tr>
    		<td colspan="4"></td>
    	</tr>
    	<tr>
    		<td colspan="4"></td>
    	</tr>
    	<tr>
    		<td colspan="4"></td>
    	</tr>
    	<tr>
    		<td colspan="4"></td>
    	</tr>
    	<tr>
    		<td colspan="4"></td>
    	</tr>
    	<tr>
    		<td colspan="4"></td>
    	</tr>
    	<tr>
    		<td style="width: 450px; height: 200px;background-image: url('images/sfondomenu1.gif')">
    			
    		</td>
    		<td colspan="2"></td>
    		<td valign="bottom"><p align="right">Visitatori: <%=conta%></p></td>
    	</tr>
    	<tr>
    		<td colspan="4"></td>
    	</tr>
    	<tr>
    		<td align="left" style="background-color: #FFFFFF" valign="top" colspan="2">_____________________
    
    		Segnalazioni
    
    		Contatti</td>
    		<td style="background-color: #FFFFFF" colspan="2"><p align="right">
    		<a href="http://www.gemmedigrazia.com/">
    		[img]images/gdg.gif[/img]</a>
    
    		Copyright ©2008 GanT85</p>
    		</td>
    	</tr>
    </table>
    
    <script type="text/javascript">
        var ddmx = new DropDownMenuX('menu1');
        ddmx.delay.show = 0;
        ddmx.delay.hide = 400;
        ddmx.position.levelX.left = 2;
        ddmx.init();
    </script>
    
    </div>
    </body>
    
    </html>

  7. #7
    Forse l'intestazione della pagina e quella del browser non coincidono. Prova a mettere una codifica al browser e ricontrolla.
    FEDERIX.IT - [Pillola] GRAFICA DEI FORM

    ...ho ancora quella forza che ti serve, quando dici "Si comincia!"

  8. #8
    e mi diresti come si fa... scusami ma nn lo so...

  9. #9
    Che browser hai??
    FEDERIX.IT - [Pillola] GRAFICA DEI FORM

    ...ho ancora quella forza che ti serve, quando dici "Si comincia!"

  10. #10
    internet explorer ma me lo fa anke cn mozilla e opera.. ho provato anke su altri pc...

Permessi di invio

  • Non puoi inserire discussioni
  • Non puoi inserire repliche
  • Non puoi inserire allegati
  • Non puoi modificare i tuoi messaggi
  •  
Powered by vBulletin® Version 4.2.1
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved.