That is the code for hiding content.
nobg was just an example, it is not a short term for no background.
You can name it what you like such as "nohome"
Another example.
Lets say we have following menu item ids. 101, 200, 220, 400
Lets say we want to use "nohome" as suffix.
So for each menu item id we will enter following in templates > features suffixes for pages.
Pageid: 101
Suffix: nohome
Pageid: 200
Suffix: nohome
Pageid: 220
Suffix: nohome
Pageid: 400
Suffix: nohome
CSS:
- Code: Select all
.nohome #gkPage { display: none;}
Above will also hide any modules in mainbody positions as it is under #gkPage element. If you dont want that simply replace above css with below css
- Code: Select all
.nohome #gkComponentWrap { display: none;}
Following is page layout and nesting elements.
#gkPage
----------#gkContent
------------------------#gkContentMainbody
-------------------------------------------------#gkComponentWrap
-------------------------------------------------------------------------#gkMainbody
See you around...