Newbie here shopping around for a simple CMS, so not surprisingly was led to consider CMSmadesimple.
But one thing about it seems weird - using Safari (v2.0.4) I get a very annoying artifact whenever browsing the CMSms site itself - every time I navigate to another page, I get the un-formatted version of the page displayed for perhaps half-a-second before the CSS is applied and the page is properly formatted.
Doesn't seem to happen on Firefox (also on MacOS).
Is it me (or some preferences that I have misconfigured? Or is it this site? Or is it something about CMSms itself?
Thanks
Gordon
Strange Safari artifact?
- Elijah Lofgren
- Power Poster
- Posts: 811
- Joined: Mon Apr 24, 2006 1:01 am
Re: Strange Safari artifact?
CMS Made Simple is the best CMS that I have found. Glad you found it too.gfroyle wrote: Newbie here shopping around for a simple CMS, so not surprisingly was led to consider CMSmadesimple.

This also happens in Opera because Opera starts displaying the page before it loads the stylesheet. However, it does not happen on subsequent pages, I assume it caches the stylesheet and uses that.gfroyle wrote: But one thing about it seems weird - using Safari (v2.0.4) I get a very annoying artifact whenever browsing the CMSms site itself - every time I navigate to another page, I get the un-formatted version of the page displayed for perhaps half-a-second before the CSS is applied and the page is properly formatted.
I've never used Safari, but you may want to check and make sure that you have Caching enabled.gfroyle wrote: Doesn't seem to happen on Firefox (also on MacOS).
Is it me (or some preferences that I have misconfigured? Or is it this site? Or is it something about CMSms itself?
It seems that the problem you are having is because the stylesheet takes a bit longer than usual to load.
Showing the page without styles seems to be referred to as a Safari bug:
http://www.hopstudios.com/nep/unvarnish ... d_content/
http://www.ifingers.com/tips/2006/01/fouc-safari.html
http://weblogs.mozillazine.org/dave/arc ... tml#002840
Hope this helps,
Elijah
Note: I don't have time to take on any more projects. I'm quite busy. I may be too busy to reply to emails or messages. Thanks for your understanding. 

-
- Forum Members
- Posts: 32
- Joined: Mon Jan 29, 2007 1:19 am
Re: Strange Safari artifact?
I started having this problem as well. It is described as "Flash Of Unstyled Content" (FOUC) and can be a problem for different reasons in Safari and Internet Explorer. To fix the problem in Internet Explorer, see BlueRobot. For Safari, I have not found a fix to date, but you can make the problem less noticeable by using CSS to hide the document body when loading the page and then making the body visible in the style sheet. For example, add a style attribute to the body element like this:
Then include a rule like the following in the associated style sheet:
Note that the style sheet rule must be marked "!important" to ensure that it overrides the style specified in the HTML document.
The result of this change is a that the flash of unstyled content is replaced with a flash of a blank page, but this is far less disruptive and may not even be noticed in most cases.
I found this work-around described in the last comment to Safari FOUC (Flash of Unstyled Content). (You have to scroll right to find the comment on this very unconventional page.)
Code: Select all
</__body style="visibility: hidden">
Code: Select all
body { visibility: visible !important; }
The result of this change is a that the flash of unstyled content is replaced with a flash of a blank page, but this is far less disruptive and may not even be noticed in most cases.
I found this work-around described in the last comment to Safari FOUC (Flash of Unstyled Content). (You have to scroll right to find the comment on this very unconventional page.)