Styling your RGV Rock City Web site is easy using CSS. CSS is short for Cascading Style Sheet and it’s used to style several elements on a Web page from one location. In any instance you’ll want to know what colors and or background images you want to use. The following are the steps to style your K2 Theme.
Step 1
Start at your Dashboard » Click on Design » Click on Custom CSS
Step 2
Begin your code after the following line:
/* Custom CSS – write your own CSS values to overwrite the ones from K2 */
Step 3
Copy and paste the following code after the line on Step 2.
#page {
/* The entire design is contained within the ‘page’ id */
}
#header {
/* Contains the H1 and menu */
}
#primary {
/* Contains the main column */
}
.hentry {
/* Each entry is contained within the ‘hentry’ class */
}
.entry-content {
/* The meat and potatoes of every entry */
}
#sidebar-1 {
/* The first sidebar */
}
#sidebar-2 {
/* The second sidebar */
}
Tips
The “{” or open-bracket must must end with the “}” or close-bracket for the CSS to function properly.
Both the “{” and “}” must follow a class or id value. Inside the brackets can be empty so long as the brackets follow the value.
Resources
CSS Referrence (w3schools.com)
Click on the CSS tag on this post to view more on the topic.