Only changes the background color for your style
PERSONALIZE:
- How to add or remove buttons?
- To add buttons, find the following lines in the navbar template:
Before they add:
Quote:
<a href="LINK" class="fisheyeItem"> <img src="URL_IMAGEN" width="30" /> <span> TITLE_BOTOM </ span> </ a>
|
- To remove buttons, simply delete the line referring to the button you want to delete.
- How to customize the background of the buttons?
- Edit the file. Css is included in the dock folder and look for the following:
Code:
Body
(
Background: url (images / main-bg.gif);
Height: 100%;
Font-family: Arial, Helvetica, sans-serif;
Font-size: 12px;
)
Amendment to the line by placing the url of background image to the desired setting or the chosen color in hexadecimal format. For ex. # ff0000; if you want a red background color.
Do the same with the following section:
Quote:
.-Dock container
(
Position: absolute;
Height: 50px;
Background: url (images / dock-bg.gif);
Padding-left: 20px;
)
|