How to Locate CSS in Blogger Template

Here on how to locate Cascading Style Sheets (CSS) for the Blogger Template. Beginners try it out!

Classic Blogger:
Between the <style> and </style> tags. The first tag could have more in it like <style type="text/css" media="screen"> so don't let that concern you.

Beta Blogger:
Between the <b:skin><![CDATA[/* and ]]></b:skin>
The first tag is towards the beginning of your template in Classic and Beta Blogger. The style sheet it's self contains a lot of code that looks like this:

Note the "{ }" and the "#". They will be all over the place. That is a tale-tell sign of the CSS style sheet code.

Example of code:

.sidebar {
color: $sidebartextcolor;
line-height: 1.5em;
}

and

#header a {
color:$pagetitlecolor;
text-decoration:none;
}

Older Post