Jump to content

Modifying a class's style definitions for a specific page


pwusr
 Share

Recommended Posts

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; }
  • Like 2
Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...