Is there a way to customize the text content of a component in Joomla by editing the body text? The CSS properties for #content are adjusting padding, margin, border, width, height, and background but not affecting font attributes...
Inside index.php
<body>
<div id="content"><jdoc:include type="component" /></div>
</body>
CSS
#content
{
padding:20px 10px 0 20px;
width:670px;
border-right:1px groove;
line-height:30px;
font-family:Monotype Corsiva;
font-size:16px;
}