HTML - PÁGINA SIN FORMATO, SIN IMÁGENES Y EN LATIN

 
Vista:
sin imagen de perfil

PÁGINA SIN FORMATO, SIN IMÁGENES Y EN LATIN

Publicado por Luis (5 intervenciones) el 09/08/2017 10:36:57
Buenos días,

Estoy haciendo una plantilla para mi tienda de eBay en el programa Website X5 13, he subido el proyecto a hosting y se puede visualizar la página correctamente http://meinestore.000webhostapp.com El problema lo tengo cuando paso el código html al editor de eBay o a otro editor html cualquiera como Sellercore. La pagina aparece sin formato, sin imágenes y salen textos en latín.

El programa crea un archivo que se llama index.html y varias carpetas con el contenido web, cuando le das al archivo index.html se abre la página en el navegador correctamente pero si copias el código de fuente de ese archivo y lo pego en eBay o en el editor, todo se va al traste. Yo supongo que tiene que ver con el HTML5 pero no tengo ni idea.

Aquí pueden ver una imagen de lo que pasa: http://fs5.directupload.net/images/170809/kpx7po3m.jpg

Me podrían ayudar por favor, soy novato en esto.

Gracias
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder
sin imagen de perfil

PÁGINA SIN FORMATO, SIN IMÁGENES Y EN LATIN

Publicado por Victor (22 intervenciones) el 09/08/2017 13:33:19
Si abres la consola,en chrome por ejemplo, salen algunos errores.
Puede poner algo de codigo?
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar
sin imagen de perfil

PÁGINA SIN FORMATO, SIN IMÁGENES Y EN LATIN

Publicado por Luis (5 intervenciones) el 09/08/2017 19:20:09
Cómo subo los códigos?

Cómo puedo trasladar lo que veo en la url a un editor html sin que pierda el formato?
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar
Imágen de perfil de xve
Val: 1.144
Oro
Ha mantenido su posición en HTML (en relación al último mes)
Gráfica de HTML

PÁGINA SIN FORMATO, SIN IMÁGENES Y EN LATIN

Publicado por xve (1543 intervenciones) el 09/08/2017 19:42:17
Hola Luis, pon la ruta absoluta en los estilos...
Ahora tienes esto:
1
<link rel="stylesheet" type="text/css" href="style/menu.css?13-1-4-13" media="screen" />
prueba con la ruta absoluta:
1
<link rel="stylesheet" type="text/css" href="http://meinestore.000webhostapp.com/style/menu.css?13-1-4-13" media="screen" />

Coméntanos, ok?
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar
sin imagen de perfil

PÁGINA SIN FORMATO, SIN IMÁGENES Y EN LATIN

Publicado por Luis (5 intervenciones) el 10/08/2017 10:18:10
Buenos días,

Hice lo que usted me dijo pero nada. Me estoy iniciando en esto y tu paciencia se agradece mucho. Empecemos por el principio porque seguramente yo no me he explicado correctamente y mi inexperiencia seguramente es la que no me deja avanzar.

Yo solía crear las plantillas de mis productos de eBay en un editor que se llama "Sellercore" pero con los cambios recientes que hizo eBay sobre el contenido activo, decidí intentar hacer unas plantillas un poquito más vistosas y con más información, y recurrí a un software que se llama WebSite X5. Lo que yo hacía en Sellercore es lo siguiente: (Plantillas real)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
<style type="text/css">
#SuperWrapper {
width: 800px;
margin-left: auto;
margin-right: auto;
font-family: arial, Helvetica, sans-serif;
font-size: 12px;
}
#SuperWrapper p {
margin: 0px;
padding: 0px 0px 15px 0px;
line-height: 20px;
}
#SuperWrapper h1 {
padding: 5px 0px 10px 0px;
margin: 0px;
font-size: 26px;
font-weight: bold;
letter-spacing: -1px;
color: #336699;
}
#SuperWrapper a {
font-weight: bold;
text-decoration: underline;
color: #000000;
}
#SuperWrapper a:hover {
text-decoration:none;
}
#SuperHeader {
width:800px;
height: 240px;
background-image:url('http://www.superauctiontemplate.com/freebaytemplate/productimages/GeneralShopping/HTML/images/Header.jpg');
}
#SuperHeaderLogo {
padding: 90px 5px 0px 160px;
font-family: arial, Helvetica, sans-serif;
font-size: 44px;
letter-spacing: -3px;
font-weight: bold;
margin: 0px;
text-align: left;
line-height: 35px;
color: #336699;
text-shadow: 0px 0px 0px #000;
}
#SuperHeaderMenu {
margin: 0px;
}
#SuperHeaderMenu ul.navi{
padding: 0px;
margin: 0px 0px 0px 0px;
width: 800px;
text-align: center; position: relative;
}
#SuperHeaderMenu ul.navi li{
height: 22px;
padding: 0 10px 0 10px;
margin: 0px;
display: inline;
}
#SuperHeaderMenu ul.navi li a{
padding: 0px 8px 0px 8px;
font: 18px arial, Helvetica, sans-serif;
color: #FFFFFF;
text-decoration: none;
text-indent: 0px;
font-weight: bold;
margin: 0;
width: inherit;
letter-spacing: -1px;
line-height: 30px;
}
#SuperHeaderMenu ul.navi li a:hover{
color: #FFFF99;
}
#SuperContentsWrapper {
width: 800px;
background-image: url('http://www.superauctiontemplate.com/freebaytemplate/productimages/GeneralShopping/HTML/images/Contents.jpg');
}
#SuperContents {
width: 800px;
background-image: url('http://www.superauctiontemplate.com/freebaytemplate/productimages/GeneralShopping/HTML/images/ContentsTop.jpg'); background-repeat: no-repeat;
}
#SuperContentsSub {
padding: 20px 40px 0px 40px;
}
#SuperFooter {
width: 800px;
height: 44px;
background-image:url('http://www.superauctiontemplate.com/freebaytemplate/productimages/GeneralShopping/HTML/images/Footer.jpg');
}
#SuperFooterLink {
width: 800px;
background-image:url('http://www.superauctiontemplate.com/freebaytemplate/productimages/GeneralShopping/HTML/images/BG.jpg');
height: 100px;
}
#SuperBoxContents {
padding: 0px 80px 0px 80px;
margin: 0px;
}
#SuperBoxContents p {
padding: 0px 0px 10px 0px;
margin: 0px;
line-height: 20px;
}
#SuperBoxContents ul {
padding: 0px 0px 0px 28px;
margin: 0px;
list-style-type: disc;
}
#SuperBoxContents li {
line-height: 20px;
}
#SuperPayment {
width: 800px;
}
#SuperPaymentTop {
width: 800px;
height: 83px;
background-image:url('http://www.superauctiontemplate.com/freebaytemplate/productimages/GeneralShopping/HTML/images/PaymentPolicyTop.jpg');
}
#SuperPaymentContents {
width: 800px;
background-image:url('http://www.superauctiontemplate.com/freebaytemplate/productimages/GeneralShopping/HTML/images/PaymentPolicyContents.jpg');
}
#SuperPaymentBottom {
width: 800px;
height: 53px;
background-image:url('http://www.superauctiontemplate.com/freebaytemplate/productimages/GeneralShopping/HTML/images/PaymentPolicyBottom.jpg');
}
#SuperShipping {
width: 800px;
}
#SuperShippingTop {
width: 800px;
height: 83px;
background-image: url('http://www.superauctiontemplate.com/freebaytemplate/productimages/GeneralShopping/HTML/images/ShippingPolicyTop.jpg');
}
#SuperShippingContents {
width: 800px;
background-image:url('http://www.superauctiontemplate.com/freebaytemplate/productimages/GeneralShopping/HTML/images/ShippingPolicyContents.jpg');
}
#SuperShippingBottom {
width: 800px;
height: 53px;
background-image:url('http://www.superauctiontemplate.com/freebaytemplate/productimages/GeneralShopping/HTML/images/ShippingPolicyBottom.jpg');
}
#SuperContacts {
width: 800px;
}
#SuperContactsTop {
width: 800px;
height: 83px;
background-image:url('http://www.superauctiontemplate.com/freebaytemplate/productimages/GeneralShopping/HTML/images/ContactsTop.jpg');
}
#SuperContactsContents {
width: 800px;
background-image:url('http://www.superauctiontemplate.com/freebaytemplate/productimages/GeneralShopping/HTML/images/ContactsContents.jpg');
}
#SuperContactsBottom {
width: 800px;
height: 53px;
background-image:url('http://www.superauctiontemplate.com/freebaytemplate/productimages/GeneralShopping/HTML/images/ContactsBottom.jpg');
}
#SuperReturns {
width: 800px;
}
#SuperReturnsTop {
width: 800px;
height: 83px;
background-image:url('http://www.superauctiontemplate.com/freebaytemplate/productimages/GeneralShopping/HTML/images/ReturnsTop.jpg');
}
#SuperReturnsContents {
width: 800px;
background-image:url('http://www.superauctiontemplate.com/freebaytemplate/productimages/GeneralShopping/HTML/images/ReturnsContents.jpg');
}
#SuperReturnsBottom {
width: 800px;
height: 53px;
background-image:url('http://www.superauctiontemplate.com/freebaytemplate/productimages/GeneralShopping/HTML/images/ReturnsBottom.jpg');
}
/* HTML5 ELEMENTS */
/* sub images > thumbnail list */
ul#SuperThumbs, ul#SuperThumbs li {
margin: 0;
padding: 0;
list-style: none;
}
ul#SuperThumbs li {
float: left;
background: #ffffff;
border: 1px solid #cccccc;
margin: 0px 0px 10px 10px;
padding: 8px;
-moz-border-radius: 10px;
border-radius: 10px;
}
ul#SuperThumbs a {
float: left;
display: block;
width: 150px;
height: 150px;
line-height: 100px;
overflow: hidden;
position: relative;
z-index: 1;
}
ul#SuperThumbs a img {
float: left;
width: 100%;
height: 100%;
border: 0px;
}
/* sub images > mouse over */
ul#SuperThumbs a:hover {
overflow: visible;
z-index: 1000;
border: none;
}
ul#SuperThumbs a:hover img {
background: #ffffff;
border: 1px solid #cccccc;
padding: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
position: absolute;
top:-20px;
left:-50px;
width: auto; height: auto;
}
/* sub images > clearing floats */
ul#SuperThumbs:after, li#SuperThumbs:after {
content: ".";
display: block;
height: 0;
clear: both; visibility: hidden;
}
ul#SuperThumbs, li#SuperThumbs {
display: block;
}
ul#SuperThumbs, li#SuperThumbs {
min-height: 1%;
}
* html ul#SuperThumbs, * html li#SuperThumbs {
height: 1%;
}
</style>
<div id="SuperWrapper">	<div id="SuperHeader">	<div id="SuperHeaderLogo">&nbsp; &nbsp;<span style="font-size:36px;">UN ENTRENAMIENTO<br>
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; COMPLETO Y<br>
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; EFICAZ</span>&nbsp;<br>
&nbsp; &nbsp; &nbsp; &nbsp;<br>
&nbsp; &nbsp; &nbsp;<br>
<br>
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<br>
<br>
&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;<br>
&nbsp; &nbsp; &nbsp; &nbsp;<br>
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<br>
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<br>
<br>
<br>
&nbsp; &nbsp;&nbsp;<br>
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<br>
<br>
<br>
&nbsp; &nbsp;<br>
&nbsp; &nbsp; &nbsp;&nbsp;<br>
<br>
&nbsp;&nbsp;<br>
<br>
</div>
</div>
<div id="SuperContentsWrapper"><div id="SuperContents"><div id="SuperContentsSub"><h1 style="text-align: center; width: 716px; height: 96px;"><span style="color: rgb(0, 0, 0); font-size: 36px;">
<table cellpadding="2" cellspacing="0" style="width: 718px; height: 63px; border: 2px solid rgb(0, 0, 0); border-radius: 55px; background-color: rgb(96, 128, 255);">
<tr>
<td style="text-align: center; color: rgb(255, 255, 255); width: 714px; height: 59px;"><span style="font-size:44px;">&nbsp;<span style="font-weight: bold;"><span style="font-size:24px;"><span style="font-size:44px;">Descripción General</span></span>&nbsp;</span></span></td>
</tr>
</table>
</span><span style="color: rgb(0, 0, 0); font-size: 24px;">MULTI-ENTRENADOR &nbsp;"ABMAXX5 DELUXE" VITALMAXX®&nbsp;</span><br>
<span style="color: rgb(51, 102, 204); font-size: 19px; font-style: italic; font-weight: normal; text-transform: uppercase;">EJercita tu abdomen al mismo tiempo que tonificas tu cuerpo&nbsp;</span></h1><div style="text-align: center;">&nbsp;&nbsp;<img src="http://fs5.directupload.net/images/170430/qdt9fuhj.png" name="galleryImg" style="width: 719px; height: 571px;" br=""></div>
<p class="MsoNormal" style="text-align: justify; ">¿Tiene poco tiempo para ir al gimnasio o son muy caros? ¡No se preocupe! Vitalmaxx® nos presenta el “ABMAXX 5 Deluxe” una ingeniosa combinación para un entrenamiento de fuerza y resistencia, con el que lograrás mantener una figura estilizada y un abdomen firme, plano y definido. Este tren de entrenamiento abdominal, no solo entrenará su abdomen, también es altamente eficaz para ejercitar otros grupos musculares del cuerpo, sus nalgas, las piernas,los brazos y la espalda. El “ABMAXX 5” proporcionará el nivel adecuado de entrenamiento para cada uno de los usuarios de manera individualizada, usted podrá configurar fácilmente este estupendo entrenador personal con 5 niveles distintos de intensidad, para que lo pueda utilizar toda la familia, ya sean principiantes o &nbsp;atletas avanzados. La inteligente fusión del cardio con la fuerza, le llevará a su meta de una manera fácil y eficaz desde la comodidad de su hogar. Después de su entrenamiento diario, simplemente doble el aparato y guárdelo fácilmente en el armario o debajo de la cama. ¡Calidad Alemana! Ligero pero robusto!&nbsp;</p>
<o:p></o:p>
<p style="text-align: center; "><span style="color: rgb(0, 128, 0); font-weight: bold;">&nbsp;<span style="font-size: 16px;">VÍDEO</span></span></p>
<!-- BEGIN VIDEO -->
<div style="position:relative; text-align:center; margin:auto; width:100%; max-width:600px;"><div style="width:100%; padding-top:75%;"><div style="position:absolute; left:0; right:0; top:0; bottom:0; margin:auto;"><object width="100%" height="100%" type="text/html" allowfullscreen="true" data="http://www.youtube.com/embed/DPagjpaK-WE?rel=0"></object></div>
</div></div>
<!-- END VIDEO -->
<br>
<br>
<span style="color: rgb(0, 100, 0); font-size: 18px; font-weight: bold; text-align: justify;">Características y funciones:</span>
<p class="MsoNormal"><span style="color: rgb(0, 100, 0);">- Tren de ejercicio para principiantes y avanzados<br>
- 5 niveles de intensidad con diferentes ángulos<br>
- Entrenamiento eficaz del abdomen, piernas, espalda, nalgas y los brazos<br>
- Combinación de resistencia y entrenamiento de fuerza<br>
- Plegable para ahorrar espacio<br>
- Peso máximo del usuario: 100 kg<br>
- Dimensiones: aprox. 112 x 54,5 x 60 cm (L x An x Al)<br>
- Peso: 8 kg<br>
</span><span style="font-family: Calibri, sans-serif; font-size: 11pt;"><span style="color: rgb(0, 100, 0);">- Color: negro<br>
- Kit de montaje incluido</span></span></p>
<p class="MsoNormal"><o:p></o:p></p>
<img src="http://fs5.directupload.net/images/170501/n75fbzmk.jpg" name="galleryImg" style="width: 719px; height: 1272px;" br="">
<p style="text-align: center; border-width: 2px; border-style: inset; border-color: rgb(255, 0, 0); background: linear-gradient(130deg, rgb(255, 0, 0), rgb(0, 255, 0), rgb(255, 0, 0)); box-shadow: rgb(88, 88, 88) 3px 3px 6px 3px;"><br>
<span style="font-size:36px;">POR FAVOR LEA CON ATENCIÓN&nbsp;</span></p>
<div style="text-align: left;"><div style="text-align: justify;"><span style="font-weight: bold;"><br>
</span></div>
<div style="text-align: justify; border-width: 1px; border-style: outset; border-color: rgb(255, 0, 0); background-color: rgb(188, 113, 0); box-shadow: rgb(160, 182, 255) 3px 3px 6px 3px; position: relative;"><span style="font-size: 12px; background-color: rgb(255, 255, 255);"><div style="line-height: normal; background-color: rgb(242, 150, 13);"><span style="font-weight: bold;">Estado del Artículo:<span style="color: rgb(255, 0, 0);"><br>
<span style="font-size:16px;">"Nuevo. Embalaje ligeramente dañado"</span></span><br>
<br>
Nota:</span><br>
Artículos importados de Alemania con diferentes categorías: Nuevos, Nuevos con pequeñas taras, Nuevos con embalajes ligeramente dañado, etc. Todos nuestros artículos funcionan correctamente, han sido revisados, clasificados y embalados cuidadosamente por personal cualificado para garantizar que nuestros clientes reciben lo que han comprado sin sorpresas desagradables, y todos incluyen descuentos de hasta el 70%. Ante cualquier eventualidad por favor contacte con nosotros para poder resolver sus dudas.<br>
<br>
<span style="font-weight: bold;">Política de devolución:&nbsp;<br>
</span>Los gastos de devolución correrán &nbsp;a cargo del comprador.&nbsp;No se aceptará ninguna devolución a portes debidos. No aceptaremos y serán devueltos al comprador a portes&nbsp;debidos los productos que,&nbsp;presenten signos de uso,&nbsp;hayan sido manipulados,&nbsp;o que estén&nbsp;deteriorados por un mal uso.<br>
</div>
</span></div></div><br>
<ul id="SuperThumbs">
<img src="http://fs5.directupload.net/images/170119/9lvgtjzg.jpg" style="width: 719px; height: 150px;"><br>
<div style="text-align: center;"><span style="font-size: 18px;">¡Buena oportunidad para hacerte con este estupendo entrenador a un precio irrepetible!</span></div>
</ul>
</div></div></div>
<div id="SuperFooter"><br>
</div>
<div id="SuperFooterLink">
<p align="center"><br>
</p>
</div>
</div>

Este código yo lo pegaba en el editor de html de eBay pero algunos elementos quedaban desordenados y descubrí, que pasando el código por este editor https://www.w3schools.com/ al pasarlo para eBay todo quedaba perfecto:

pinga0

Hasta aquí todo perfecto. El programa nuevo Website x5, cuando exporta el proyecto nuevo, te crea varias carpetas con el contenido y varios archivos html:

pinga1

Estos archivos yo los subí al servidor con Filezilla y todo normal, la página se puede ver correctamente, el problema viene cuando yo quiero pasar esa pagina, esa plantilla al editor html de ebay o al de Sellercore. Lo que yo hago, y es aquí donde yo creo que está mi error, yo copio el código html que se encuentra dentro de Index.html y lo pego directamente en los editores y todo aparece sin formato, sin cabecera, sin imágenes, etc.....

Ayuda por favor.

Por qué se ve correctamente en la web y no en los editores html? Yo he cogido otras páginas he copiado el código de fuente directamente del navegador y las puedo ver y editar en cualquier editor.

Gracias nuevamente
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar