• 0
  • 10 RepliesReplies
  • 4683 ReadTimes Read
  • 0 PointsPoints

Topic: Encontrar este un error.

no avatar
Usuario: EL GATO
Rango: Recién Llegado
Mensajes: 7
Points: 0
Perfil: View Profile
Encontrar este un error.
November 06, 2010 - 03:41 15:41
Hola,

Pues me gustaria que me ayudaran con lo siguiente

reviso mi web en el validador w3c

Ver resultado: http://validator.w3.org/check?uri=http%3A%2F%2Fteveo.net%2F&charset=%28detect+automatically%29&doctype=Inline&group=0&user-agent=W3C_Validator%2F1.1

Y mi problema es que no encuentro ese problema para arreglarlo modificando el archivo desde el administrador de smf.

Line 172, Column 74: end tag for element "span" which is not open
Code: [Select]
<a href="http://teveo.net/index.php"><span>TEVEO.NET</span></a></span></h1>The Validator found an end tag for the above element, but that element is not currently open. This is often caused by a leftover end tag from an element that was removed during editing, or by an implicitly closed element (if you have an error related to an element being used where it is not allowed, this is almost certainly the case). In the latter case this error will disappear as soon as you fix the original problem.

If this error occurred in a script section of your document, you should probably read this FAQ entry.




Por favor  es el ultimo que me queda después de quitar muchos.

Saludos y gracias.

Usuario: Papá distante
Rango: Moderador Global
Mensajes: 3504
Points: 168
Perfil: View Profile
Pais:
de
Re:Encontrar este un error.
Reply #1 November 06, 2010 - 04:26 16:26
Prueba cambiando esa linea por esta

Code: [Select]
<a href="http://teveo.net/index.php"><span>TEVEO.NET</span></a></h1>
A ver que tal.
no avatar
Usuario: EL GATO
Rango: Recién Llegado
Mensajes: 7
Points: 0
Perfil: View Profile
Re:Encontrar este un error.
Reply #2 November 06, 2010 - 05:03 17:03
Si pero lo que pasa es que no se donde esta jajaja no la veo XD
Usuario: Lean
Rango: Fundador
Mensajes: 6782
Points: 236
Perfil: View Profile
Pais:
ar
Re:Encontrar este un error.
Reply #3 November 06, 2010 - 05:11 17:11
Adjunta tu index.template.php
no avatar
Usuario: EL GATO
Rango: Recién Llegado
Mensajes: 7
Points: 0
Perfil: View Profile
Re:Encontrar este un error.
Reply #4 November 06, 2010 - 05:28 17:28
pues no puedo sacarlo por el acceso ftp
pero desde la administracion quieres? parte por parte?
del tema default o  el thema que uso
Usuario: Lean
Rango: Fundador
Mensajes: 6782
Points: 236
Perfil: View Profile
Pais:
ar
Re:Encontrar este un error.
Reply #5 November 06, 2010 - 05:29 17:29
Y como editas tus archivos?
no avatar
Usuario: EL GATO
Rango: Recién Llegado
Mensajes: 7
Points: 0
Perfil: View Profile
Re:Encontrar este un error.
Reply #6 November 06, 2010 - 05:33 17:33
Y como editas tus archivos?

desde la administración
tengo que maniobrar  :D

miren estos a ver si tienen que ver:

Code: ( DEL theme que uso) [Select]
// Show something before the link?
      if (isset($tree['extra_before']))
         echo $tree['extra_before'];

      if($count == $i)
         echo'<h1 style="font-size: 1em; display: inline;">';

      // Show the link, including a URL if it should have one.
      echo $settings['linktree_link'] && isset($tree['url']) ? '
            <a href="' . $tree['url'] . '"><span>' . $tree['name'] . '</span></a>' : '<span>' . $tree['name'] . '</span>';

      if($count == $i)
         echo'</span></h1>';
      $i++;


y este otro pero del default
Code: [Select]
function template_body_above()
{
   global $context, $settings, $options, $scripturl, $txt, $modSettings;

   echo !empty($settings['forum_width']) ? '
<div id="wrapper" style="width: ' . $settings['forum_width'] . '">' : '', '
   <div id="header"><div class="frame">
      <div id="top_section">
         <h1 class="forumtitle">
            <a href="', $scripturl, '">', empty($context['header_logo_url_html_safe']) ? $context['forum_name'] : '<img src="' . $context['header_logo_url_html_safe'] . '" alt="' . $context['forum_name'] . '" />', '</a>
         </h1>';
no avatar
Usuario: EL GATO
Rango: Recién Llegado
Mensajes: 7
Points: 0
Perfil: View Profile
Re:Encontrar este un error.
Reply #7 November 06, 2010 - 05:43 17:43
Y como editas tus archivos?

desde la administración
tengo que maniobrar  :D

miren estos a ver si tienen que ver:

Code: ( DEL theme que uso) [Select]
// Show something before the link?
      if (isset($tree['extra_before']))
         echo $tree['extra_before'];

      if($count == $i)
         echo'<h1 style="font-size: 1em; display: inline;">';

      // Show the link, including a URL if it should have one.
      echo $settings['linktree_link'] && isset($tree['url']) ? '
            <a href="' . $tree['url'] . '"><span>' . $tree['name'] . '</span></a>' : '<span>' . $tree['name'] . '</span>';

      if($count == $i)
         echo'</span></h1>';
      $i++;


y este otro pero del default
Code: [Select]
function template_body_above()
{
   global $context, $settings, $options, $scripturl, $txt, $modSettings;

   echo !empty($settings['forum_width']) ? '
<div id="wrapper" style="width: ' . $settings['forum_width'] . '">' : '', '
   <div id="header"><div class="frame">
      <div id="top_section">
         <h1 class="forumtitle">
            <a href="', $scripturl, '">', empty($context['header_logo_url_html_safe']) ? $context['forum_name'] : '<img src="' . $context['header_logo_url_html_safe'] . '" alt="' . $context['forum_name'] . '" />', '</a>
         </h1>';



Edito:

Prueba cambiando esa linea por esta

Code: [Select]
<a href="http://teveo.net/index.php"><span>TEVEO.NET</span></a></h1>
A ver que tal.

Efectivamente le quite el </span>  al primer código que mostré  y ya esta validada!! felizz XD
Usuario: Lean
Rango: Fundador
Mensajes: 6782
Points: 236
Perfil: View Profile
Pais:
ar
Re:Encontrar este un error.
Reply #8 November 06, 2010 - 05:44 17:44
Buenisimo! marco como solucionado!
Usuario: Polilla
Rango: Recién Llegado
Mensajes: 147
Points: 0
Perfil: View Profile
Re:Encontrar este un error.
Reply #9 November 06, 2010 - 05:54 17:54
si.. si.. marca y vete a dormir anda.  :-X  ;D
Usuario: Lean
Rango: Fundador
Mensajes: 6782
Points: 236
Perfil: View Profile
Pais:
ar
Re:Encontrar este un error.
Reply #10 November 06, 2010 - 06:45 18:45
si.. si.. marca y vete a dormir anda.  :-X  ;D
jajajajajajaj no seas malo ajajajaj
 

TAGS



top

Smfsimple.com es un sitio destinado a brindar un servicio de soporte y herramientas para foros realizados con el sistema de foros gratuito simplemachines.org. Contamos con un selecto equipo de desarrolladores y conocedores del sistema, sus foros estaran en buenas manos.
This site is not affiliated with or endorsed by Simple Machines