ScreenSteps > ScreenSteps Live > CSS Selectors for Custom Templates

CSS Selectors for Custom Templates

This lesson will list the CSS selectors you can use to override the styling for the standard ScreenSteps Live template.

Colors

The colors stylesheet is located here:
http://www.screenstepslive.com/stylesheets/screensteps_colors.css
Basically, by copying out any of these selectors in the sheet and pasting them into you custom template you will be able to override the color on ScreenSteps Live.

Examples

Examples

Here are some example selectors taken from the stylesheet.

1. (color) div#ScreenStepsContent div.search, div#ScreenStepsMainContent div.header h1, div#ScreenStepsSidebar div.sidebar_block h2
2. (background-color) div#ScreenStepsContent div.header
3. (background-color) div#ScreenStepsContent div.search
4. (background-color) div#ScreenStepsSidebar h3, div#ScreenStepsSidebar div.pdf
5. (color) div#ScreenStepsSidebar h3
6. (color) div#ScreenStepsMainContent a, div#ScreenStepsSidebar a
7. (background-color) div#ScreenStepsContent h1, div#ScreenStepsContent h2, div#ScreenStepsContent h3, div#ScreenStepsContent div#ScreenStepsMessage, div#ScreenStepsContent div.column_body

You will see that many styles have multiple selectors. This allows you to change one color setting and have it affect multiple elements. You are free to divide these selectors up if you would like.

Rounded Corners

Rounded_corners

If you would like to removed the rounded corners from the content boxes enter the following:

div#ScreenStepsContent div.header,
div#ScreenStepsContent div.column_body,
div#ScreenStepsContent div#ScreenStepsMessage {
-moz-border-radius: 0px;
-webkit-border-radius: 0px;
border-radius: 0px;
}

 

Removing Borders

If you would like to remove borders from the content area add the following css code:

div#ScreenStepsContent div.header,
div#ScreenStepsContent div#ScreenStepsMessage,
div#ScreenStepsContent div.column_body {
border: none;
}

Prev: How do I Apply a Custom Template to a Space? Next: How do I Change My Company Name?

Comments (0)

Add your comment




E-Mail me when someone replies to this comment

Are you human?