If you are using latest version you don't have to edit index.php. Please follow below;
1. Find menu item id.
Go to Menus > Your Menu Name > Menu item Name , look at the end of line and see its menu item id. Lets say for this example it is 230
2. Assign suffix to menu item id
Go to joomla admin > Extensions > Template Manager > GK Black & White Default > Features > Suffixes for pages. Enter similar to below.
ItemID/Option: 230
Suffix: mysuffix
You can use any name instead of "mysuffix".
3. Enable css override option
Go to joomla admin > Extensions > Template Manager > GK Black & White Default > Advanced Features > Css Override = "on".
4. Adding css for our suffix
Edit File: templates/gk_templatename/css/override.css
Add as below. Replace .mysuffix with your suffix name
- Code: Select all
.mysuffix {background: #000 ; }
or if you are using image then it will be
- Code: Select all
.mysuffix {background: url("../images/backgrounds/mybackground.png") no-repeat ; }
See you around...