Overwrite CSS: .container > * -
i'm trying overwrite line-height has been set in theme using:
.container > *{font:normal 22px/28px sans-serif;}
the div targeting nested inside of .container try doesn't work!
any suggestions?
assuming div want style has class called myclass, this:
.container .myclass { line-height: x px; /* whatever need */ }
this override original selector because more specific
Comments
Post a Comment