Reputation: 8990
I wanted to know how to implement customization in your apps, like the design aspect, like tumblr, posterous and twitter, all use these customization tools to allow their users to customize, do they have their own css file for each user, or is it pulled from the database, how does it work thanks?
p.s. if there is a plugin or class that helps with this, it will be greatly appreciated
Upvotes: 0
Views: 85
Reputation: 3731
For each user in database, have stored css values:
and your have php file that generates css.
//css
background-image:url(<?php echo $user['background-image']; ?>);
variable $user comes from database
Upvotes: 2