i have this page at

http://kornar.co.uk/example.html

but it deosnt render ther html, and i know it thier because when i check view source the html code is thier, on my localhost it works perfectly, thanks for your help!!

link|improve this question

Works for me—have you fixed it since asking? Often the cause for a completely missing page is an unclosed <script> tag. – bobince Nov 11 '10 at 15:08
feedback

4 Answers

up vote 2 down vote accepted

Well to start, js/jquery.js is missing so none of your js is going to run... all the tabs are hidden so without the js the code in the tabs won't be come visible...

link|improve this answer
thanks for the answer, im offcially the stupidest html coder on the planet, im so soryy for a silly question i completely missed it! thanks again!! – getaway Nov 11 '10 at 15:05
Awesome, if you would mark the answer as accepted that would be great. – superfro Nov 11 '10 at 15:10
it wnt let me unitl 11 minutes thats why i took long,;( – getaway Nov 11 '10 at 15:19
Well the minified jQuery above that does get loaded... – Niels Bom Nov 11 '10 at 15:19
It's loaded now because he fixed it =] – superfro Nov 11 '10 at 15:26
feedback

Its works correctly for me. There is possibily two explanation why it do not works for you : - Your Browser cache need to be cleared - Your DNS cache need to be cleared.

Try both and let us now if it works

link|improve this answer
thanks for your answer, but i think it was what @superfro said about a missing jquery file, so stupid lol! thanks – getaway Nov 11 '10 at 15:06
feedback

Line 90 in your layout.css file says:

.tab {
    padding: 16px;
    display: none;
}

If you remove the "display:none" bit, you'll see more. Try to use Firebug when debugging stuff like this, it's awesome!

link|improve this answer
feedback

You have .colorpicker set to display:none in the css file.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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