CSS Tips
how to inherit font size from main page style
How many times you needed to use a regular fixed font for the page via CSS and use a relative font size on other content blocks : well the CSS way to do this is to set the main page style font size :
.main {
font size:15px;
}
And then add relative size to other elemnts:
.content_tilte {
font-size:small;
}
document.getElementById(“post-218-blankimage”).onload();

