It is absolutely possible : ) , just follow below steps and you are good to go.
1 - Find Home Page menu itemid:
Go to Joomla Admin > Menus > Main Menu.
Find Home and follow its own line and at the end you will see its id number , in my test it is "101"
2. Setup PageClass for Home menu item id.
Go to Joomla Admin > Extensions > Template Manager > Select "gk_the_real_design - Default" Click to edit settings.
On the right Find and click on " Features "
Find "Suffixes for pages" towards bottom under "Features Section"
In "ItemID/Option:" enter the number you find in step1, in my case it is "101".
In "Suffix" i entered "homelogo". You can name it anything you want just make sure following css is also same name as what you enter in this section.
Click on Add Rule button. Now you will see below in your rules.
"ItemID 101 - homelogo".
3. Adding css for our pagesuffix.
Find File: "/templates/gk_realdesign/css/override.css"
Add below css code in there.
- Code: Select all
/* Disabling logo in homepage only */
.homelogo h1#gkLogo { display: none;}
/* Moving anything after Main menu 30 pixels down in homepage only */
.homelogo #gkMainMenu { margin-bottom:30px; }
/* Changing loading text position higher - change 10 percent as you require */
.gkIsWrapper-gk_the_real_design .gkIsPreloader span.loading { margin-top: 10%; }
4. Enable Css Override Option:
Go to Joomla Admin > Extensions > Template Manager > Select "gk_the_real_design - Default" Click to edit settings.
On the right Find and click on " Advanced Features " and Enable Css Override to " On ".
You can use above example for any itemid ( page ) you require. Any questions post in here.
See you around...