This is a really basic quick start guide to modify colors in parabola skin.
First login to admin -> Settings -> Skins and categories
Click "edit" int he parabola box.
click on user.css to edit that template. We use user.css to ensure our changes are not overwritten when upgrading.
I will outline some basics, all the changes work the same so you will no doubt see a pattern.
How to chane the main background color?
this is defined in the "body", so whe you open user.css template you will see
this means changes nothing, and use the colros as defined in screen.css.
So if we want a black background, you would simple add this.
If we want to change the background of the main navigation bar we would find:
and change to:
This same pattern is applied to all elements in parabola, you can use "firebug" or any modern browsers like chrome and opera to show the class or ID that controls the style of any element. Nearly every element is already in the user.css file so go ahead and starting adding definitions to make your list your own.
Learn some CSS basics: http://www.w3schools.com/css/
Feel free to ask any questions.
First login to admin -> Settings -> Skins and categories
Click "edit" int he parabola box.
click on user.css to edit that template. We use user.css to ensure our changes are not overwritten when upgrading.
I will outline some basics, all the changes work the same so you will no doubt see a pattern.
How to chane the main background color?
this is defined in the "body", so whe you open user.css template you will see
Code:
body {
}
So if we want a black background, you would simple add this.
Code:
body {
background: black;
}
Code:
#navigation {
}
Code:
#navigation {
background: red;
}
Learn some CSS basics: http://www.w3schools.com/css/
Feel free to ask any questions.