Skip to main content
Home  › ... Docsย โ€บย Magic Page Class Styling

Magic Page-Class Styling

2shine will add various classes to the body tag to make all kinds of stylings easy.

Problems We're Solving

Often you'll have needs like the following:

  1. The home page needs a special padding because of some slider
  2. The contact page needs a special styling for the google-maps
  3. All the product pages should use a different color scheme
  4. All german pages need some adjustments to the navigation
  5. Admins should see some inivisbile stuff
  6. etc.

The bad way to do this is to create new skins / themes for each requirement.

This is really bad, because you end up with a lot of duplicate code to maintain - and this usually begins to diverge in an uncontrollable manner. 

Our goal is to keep things simple and managable

The Strategy Explained

To achieve this, we ensure that the body tag of the page has a lot of special classes which contain context information - like what page we're on or what the parent page is. 

We call these Magic Page Classes

Using these you can create really cool CSS rules to adjust anything you need, as targeted as you need. 

List of Built-In Classes

  1. page-### 
  2. nav-level-### 
  3. lang-en 
  4. lang-root-en 
  5. lang-neutral-en 
  6. site-###
  7. page-root-###
  8. page-root-neutral-### 
  9. to-shine-variation-"layout variation"
  10. to-shine-mainnav-varriation-"right/ center/ left"
  11. page-is-home 

Keep reading to see what you can do with each one.

Add your Own Magic Classes

If you want to extend this system and add more context information, you can do this in the body-css-classes.ascx file. 

page-###

With this class every page is given an unique page ID which means every page can be called upon to make changes to it. 

Example: 

With simple css like in the image on the right you can make changes to a single page by calling on the page class. The css on the right will set the body background-color to cornflowerblue. 

๐Ÿ‘‰ Here you can find this example

nav-level-###

This class indicates the level the page is on. That means if the page is on the same level with the home page (on root level) this value will be one. 

Take a look at the graphic below where "Magic Page Class Styling" and "Magic Page Class Styling (de-DE)" have the value 2 and "Docs", "Docs (de-DE)" and "Home" display 1.

Example:

The code on the left changes the background-color for all the pages which the nav-level-3 class.

๐Ÿ‘‰ Here you can find this example

 

lang-(en)

This class indicates, which language variation of the page you are currently on. That means if you enabled a page in for example german and english and you were reading in english this value would be en.

With this you could change the style for all the english pages and for example change all the background colors for those.

lang-neutral-(en)

This class shows the language of the highest ancestor of the page in the default language. 

Take a look at the graphic below where "Magic Page Class Styling", "Magic Page Class Styling (de-DE)", and "Docs (de-DE)" have en as the value. 

This can e.g. be used to style all descendants and copys in all languages of a page. 

 

site-###

This shows the site that this page is on. Which means if it was created on the default site this value will be 0. This can be used to style all pages of a site. 

page-root-###

This value indicates the highest ranked ancestor of this page. If we take this page as an example we see that the value is page-root-44. page-44 is the Docs page which is on the same level as the home page and on the root level. 

 

page-root-neutral-###

This class refers to the hightes ancestor in the default language. If you created the page in e.g. english the class will always refer to the highest ranking ancestor in the default language in this case english. 

This can e.g. be used to style all descendants in all languages of a specific page. Take a look at the graphic below where the pages "Magic Page Class Styling", "Magic Page Class Styling (de-DE)", and "Docs (de-DE)" all point to the "Docs" page.

page-is-home

This class is only given to the home page but to all language variations of it. It can be used to make changes speciffically to the home page.

to-shine-variation-(default)

This class regulates the 5 different layout varriations and styles the page accordingly to the selection. The value can be set to default, centered, centered submenu, fullscreen and float-headerwide. 

๐Ÿ‘‰ See the demos

๐Ÿ‘‰ Read about the layouts

to-shine-mainnav-varriation-()

This class regulates the navbar varriatios it can be set to right (default), center and left. The navbar varriations change the look and feel of the navbar.

๐Ÿ‘‰ Read about the Navigation 

Magic Headerpane-Class Styling

2shine will add a the "to-shine-header-pane-empty" class to the Headerpane if it is empty. It is used to style the Headerpane on some layouts if there aren't any modules populating it.