vote up 1 vote down star

Hello everyone,

I am working on a website build using cakephp framework. My problem is that sometimes it is not rendered properly. either the css is not applied or is half applied. After refreshing page 4 to 5 times it displays properly. The problem is with all browsers. This problem occurs quite frequently while browsing the website and is also a degrading factor in the popularity of my website. Here is the screenshot.alt text

Here's my website www.mytopten.in

Please help me understand and solve this problem.

Thanks

flag

76% accept rate
I've occasionally seen that kind of behaviour before. Not as badly as this though. Weird. – Eric Jul 20 at 9:06

2 Answers

vote up 2 vote down check

Find the \app\views\layouts\default.thtml file.

Your current code looks like this

<title>MyTopTen</title>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>

Move the title tag inside of head. Move the CSS link statement

<link rel="stylesheet" type="text/css" href="/css/cake.generic.css" />

to the head too. You are currently loading it after #main and before #sidebar. The CSS must be loaded in <head> or it can cause inconsistent rendering.

link|flag
thanks a lot, your suggestion helped a lot.. :-) It also removed my rendering problem. thanks once again. – Gaurav Sharma Jul 20 at 12:54
vote up 2 vote down

First and foremost id say that your css should be loading in the header, not half way through the body.

The page flashes for me (because of this) but the css does load and I've not been able to replicate the problem beyond that.

Aim to build the page so that it validates as this will make debugging Cake, more like debugging cake (rather than it being an abstract problem on top of messy html)

http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fwww.mytopten.in%2Ftopics%2Findex%2Fordermode%3Apopular

Get the page to a state where it resembles XHTML 1.0 first :o) (XHTML 1.0 Transitional as you've set)

The validator output is pretty verbose but in the case of your css, if you wish to use the same style repeatedly, and wish to attribute it on each element you want it to apply to (rather than using parent:child) you should use class (.mystyle // class="mystyle") for repeated styles and id (#myid // id="myid") for unique elements. An ID should only occur once on a page.

link|flag
thanks man, there was some problem in the inclusion of the css. You gave me a perfect suggestion. – Gaurav Sharma Jul 20 at 12:56

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.