pwusr Posted January 25, 2013 Share Posted January 25, 2013 If I want to modify (the css for) a class for a specific page only, please tell me which is the best way. (The class is common to almost all pages) Thanks a lot in advance. Link to comment Share on other sites More sharing options...
Wanze Posted January 25, 2013 Share Posted January 25, 2013 Frontend? I usually do this in my templates: <body class="<?php echo $page->template . ' page_' . $page->id; ?>"> Then in your css, you can define styles by Template or if necessary, by Page: /*Set styles for basic_page template*/ body.basic_page ul { margin: 0; } /*Or for a Page*/ body.page_2003 ul {margin: 20px; } 2 Link to comment Share on other sites More sharing options...
pwusr Posted January 26, 2013 Author Share Posted January 26, 2013 Thanks a lot Wanze.. really appreciate your help. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now