tlewiscpm
Posts: 3
Joined: Wed Sep 26, 2012 10:02 pm

Won't stop loading

When in the editor... Everything displays and opens correctly.

If I simply open the html in a browser... its fine

However, when I publish all my files and correct all the paths and place the HTM element within my website... I click on the thumb to enter the gallery and it displays "loading" and never loads.

I've looked on the forum and attempted the different fixes that many have suggested but to no success. Below are links for reference.

Thank you in advance for the help.

-T

THIS DISPLAYS THE ISSUE (this is the published version on my server... placed on a page within my site)
http://www.coleprintmarket.com/Sample.html

HERE IS DISPLAYS IT WORKING CORRECTLY (this is the published version on my server)
http://www.coleprintmarket.com/Portfoli ... xample.htm


Please let me know if I can provide any further info.
User avatar
EarlyOut
Posts: 1705
Joined: Sun Nov 11, 2007 9:22 pm
Location: Sector R
Contact: Website

Re: Won't stop loading

Your non-working page is, for lack of a better term, a mess. You've got multiple DOCTYPEs, multiple <html> sections, multiple <head> sections, and multiple <body> sections, with overlapping closers on each one. You can't do that in HTML and get away with it. A page must be put together in a certain way:

DOCTYPE
<html>
<head>
(head section material)
</head>
<body>
(body section material)
</body>
</html>

Feed your page through a validator: http://validator.w3.org/
tlewiscpm
Posts: 3
Joined: Wed Sep 26, 2012 10:02 pm

Re: Won't stop loading

That would makes sense... I see now what happen. HTML element within an HTML element via a site builder.

Thanks again for catching that. Easy fix.

Hopefully that's all it'll take. Should be.
tlewiscpm
Posts: 3
Joined: Wed Sep 26, 2012 10:02 pm

Re: Won't stop loading

simplified the code... and still having the same issue?

http://www.coleprintmarket.com/Portfolio.html


what I'm I doing wrong here?
User avatar
EarlyOut
Posts: 1705
Joined: Sun Nov 11, 2007 9:22 pm
Location: Sector R
Contact: Website

Re: Won't stop loading

Again, feed your page through a validator. It will tell you where the errors are. In fact, just viewing the page source in Firefox will show you where the problems are - they show up in red.
alezy
Posts: 1
Joined: Sat Jan 04, 2014 8:44 am

Re: Won't stop loading

In addition during pop-up mode, although my thumbnail strip at the bottom remains centered when resizing windows, the pop-up image is static. Can this also be altered so the pop-up remains relative to the thumbnail strip?





klondike
Last edited by alezy on Wed Jan 06, 2016 9:43 am, edited 3 times in total.
MisterNeutron
Posts: 440
Joined: Sun Aug 18, 2013 11:20 am

Re: Won't stop loading

Possible, but you're probably not going to like it. It's not very smooth or elegant. But how often do you expect a site visitor to resize his browser window while viewing your page?

http://highslide.com/studies/window-resize-2.html

This one repositions the expander, but doesn't alter its size, which might be a reasonable compromise:

http://highslide.com/studies/window-resize.html

Return to “Highslide Editor”