Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have page where everything is completed with ajax and php.

I have in-tab content where user can choose colors with color pickers.

When user choose to save his colors, I'm storing new CSS code into database.

here is CSS code

.browser_content{ background-color: #188072; width: 420px; padding-left: 5px; color: #FFFFFF; -moz-border-radius: 5px; border-radius: 5px; webkit-border-radius: 5px; background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#188072), to(#333333)); background: -webkit-linear-gradient(top, #188072, #333333); background: -moz-linear-gradient(top, #188072, #333333); background: -ms-linear-gradient(top, #188072, #333333); background: -o-linear-gradient(top, #188072, #333333); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#188072, endColorstr=#333333); } 


.hotel_location{ background-color: #999999; } 

So when user try open this tab next time, I want to load this css into that page. I've tried to user php headers but nothing happens.

I must notice again, there is no page refresh, content is loaded with ajax, also there can't be new php files which will be used like .css, it must be solved using echo, print or something similar.

Thanks.

share|improve this question
Please show the actual code that you are using to output the custom CSS – Pekka 웃 Dec 16 '11 at 0:53

2 Answers

up vote 0 down vote accepted

You can use something like this in your php page:

<style type="text/css">
.your_class
{
<?php
    $colorValues = ... // get user's color settings from db
    echo '    color: ' . $colorValue  . ' !important;'
?>
}
</style>;
share|improve this answer

Check this out: http://www.javascriptkit.com/javatutors/loadjavascriptcss.shtml

share|improve this answer
To add to this anwer, in case it's not obvious, you would create a php script that returns the (contents of) stylesheet (with the right headers) and use its url within the JS Ayman has linked. – thatjuan Dec 16 '11 at 2:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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