Websites that only load hypertext, images, titles, and plain text?

Ray2215

Newbie
Joined
May 6, 2018
Messages
31
Reaction score
13
I'm having trouble finding a thread that has some solid explanation. I know it's a common issue. Is it server-side, something to do with dns, stylesheets, or local ad blockers? If it is a browser or PC issue is there anything I can do to prevent it? I never experience it with a project site, but I'm seeing it now on my employer's.
 
Probably my issue but what is the question? You can't see website style? Did you check your css file or it's integration in your Pages?
 
I'm having trouble finding a thread that has some solid explanation. I know it's a common issue. Is it server-side, something to do with dns, stylesheets, or local ad blockers? If it is a browser or PC issue is there anything I can do to prevent it? I never experience it with a project site, but I'm seeing it now on my employer's.

It's usually from missing stylesheet (css file), which was either not downloaded or rendered. It's usually from browser, clear cache memory and cookies.
 
Yes sorry I tried to include an example image but I believe I'm restricted as a newbie. The site just renders text. However sometimes it loads correctly so it's difficult to troubleshoot.

Thanks you for the clear cache suggestion, duly noted.

My main questions is this.. Is there anyway I can prevent this from contributing to bounce rate? Many prospective clients will just peg this as a site error.
 
Well there's no need to even think about bounce rate if you can solve the root issue. Like some have already mentioned, it's probably from a missing CSS file. It's tough to diagnose, however, without knowing more. Is the website served over https? Is it using a CDN? Also, open up Chrome developer tools and check the console for error messages.
 
I'm having trouble finding a thread that has some solid explanation. I know it's a common issue. Is it server-side, something to do with dns, stylesheets, or local ad blockers? If it is a browser or PC issue is there anything I can do to prevent it? I never experience it with a project site, but I'm seeing it now on my employer's.
Also consult with your webhosting tech support. :)
 
Well there's no need to even think about bounce rate if you can solve the root issue. Like some have already mentioned, it's probably from a missing CSS file. It's tough to diagnose, however, without knowing more. Is the website served over h t t p s? Is it using a CDN? Also, open up Chrome developer tools and check the console for error messages.

Ok, got it. The website is served over h t t p s, and I will need to find out if he is using a CDN (I would guess so. I imagine one of the "Google" guys he's paid has sold him on website speed.). I will try to re-create the issue so I can check for error messages.

Could it potentially be that the CSS file being called is over-written in the html file because it is ranked poorly in the header tag, or does the fact that it is not a consistent error rule that out?
 
It looks like the CSS file is insecure.

Code:
22Mixed Content: The page at '<URL>' was loaded over H T T P S, but requested an insecure script '<URL>'. This request has been blocked; the content must be served over H T T P S.
28Mixed Content: The page at '<URL>' was loaded over H T T P S, but requested an insecure stylesheet '<URL>'. This request has been blocked; the content must be served over H T T P S.
18Mixed Content: The page at '<URL>' was loaded over H T T P S, but requested an insecure image '<URL>'. This content should also be served over H T T P S.
(index):1 Mixed Content: The page at 'site' was loaded over a secure connection, but contains a form that targets an insecure endpoint 'site'. This endpoint should be made available over a secure connection.
(index):1 Uncaught ReferenceError: jQuery is not defined
    at (index):1
w w w . g o o g l e t a g m a n a g e r . c o m / g t m . j s ? i d = G T M - 5 6 B P R D :1 Failed to load resource: the server responded with a status of 404 ()
util.js:228 Google Maps API warning: NoApiKeys h t t p s : / / d e v e l o p e r s . g o o g l e . c o m / m a p s / d o c u m e n t a t i o n / j a v a s c r i p t / e r r o r - m e s s a g e s # n o - a p i - k e y s
Aw.j @ util.js:228
util.js:228 Google Maps API warning: SensorNotRequired h t t p s : / / d e v e l o p e r s . g o o g l e . c o m / m a p s / d o c u m e n t a t i o n / j a v a s c r i p t / e r r o r - m e s s a g e s # s e n s o r - n o t - r e q u i r e d
Aw.j @ util.js:228

Does this mean I need to go in and change the webhook in the html file?
 
Does this mean I need to go in and change the webhook in the html file?

Yes, you need to request only https resources. So first make sure the resources are available over https, and if they are, then go into the source and change the http to https. This should solve your mixed content issues.
 
Thanks so much for the help. I wrote a thread in "Website Flipping" titled 10 tips for flippa as a thank you to give back. I'll mark this as solved if I can change the title.

One other thing I'm wondering is, sure when prospects in this niche see an apparently "broken" webpage, it's not likely they'll convert... but, I'm also wondering if this would have a negative impact on Adwords placement.. even if the bid is right, I'm sure Google has an algorithm to avoid placing "broken" sites ?
 
I can't say for sure how this would impact Adwords placement, because I really don't know. I'm guessing it would have some effect though, at least on the "landing page quality" score. But I think once the site is error-free, any negative impact it may have had would disappear.
 
Use the developer tools on your browser. Open the site. You will see the error that occurs. Could be like resource xyz.css or bootstrap.js not found or http://pathtocdncontent not found.
Change the path or put the files to the location and recheck. Most probably you will need to clear the cache before reloading the page to see the result of your changes.
 
I can't say for sure how this would impact Adwords placement, because I really don't know. I'm guessing it would have some effect though, at least on the "landing page quality" score. But I think once the site is error-free, any negative impact it may have had would disappear.

Would you guess I'd need to clear cache and re-index? Or, would that only be relevant for the SEO.. at any rate I suppose it couldn't hurt. Thanks guys!
 
Would you guess I'd need to clear cache and re-index? Or, would that only be relevant for the SEO.. at any rate I suppose it couldn't hurt. Thanks guys!

I don't think that's necessary. But you could always just go into G's Search Console and submit the URL for re-crawling. Like you said, it couldn't hurt. And you're welcome :)
 
Back
Top