I am working on a stylesheet for a multisite.
I have to declare a font-size in one variable, and the variable would change depending on the selectors. Eg:
$newfont : 10px;
i am attempting this which of course is not working:
@if ( #header ) {
$newfont: 30px;
}@ else if ( #footer ) {
$newfont: 25px;
}
Can someone please point out what i am doing wrong?