I can't change the font of my news module into same as my main website. Also the summary has that different font than my main website. I have tried to add the same css font settings into almost every setting I can find from my Module: News css. Now I'm beginning to think I have removed a crucial section from the css. In any case, here's my Module: News css:
Code: Select all
div#news {
background-image: url(images/menupic1.jpg);
background-repeat: no-repeat;
background-position: 7px 7px;
border: 0;
font-family: verdana, arial, helvetica, sans-serif;
font-size: 9,5pt;
margin: 0; /* margin for the entire div surrounding the news list */
}
div#news h2 {
background: #fff;
}
.NewsSummary {
font-family: arial, helvetica, sans-serif;
font-size: 9,5pt;
padding: 0.5em 0.5em 1em; /* padding for the news article summary */
margin: 0 0.5em 1em 0.5em; /* margin to the bottom of the news article summary */
border-bottom: 1px solid #ccc;
}
.NewsSummaryPostdate {
font-weight: bold;
}
.NewsSummaryLink {
font-weight: bold;
padding-top: 0.2em;
}
.NewsSummaryCategory {
font-style: italic;
margin: 5px 0;
}
.NewsSummaryAuthor {
font-style: italic;
padding-bottom: 0.5em;
}
.NewsSummarySummary, .NewsSummaryContent {
}
.NewsSummaryMorelink {
padding-top: 0.5em;
}
#NewsPostDetailDate {
font-size: 90%;
margin-bottom: 5px;
font-weight: bold;
}
#NewsPostDetailSummary {
}
#NewsPostDetailCategory {
font-style: italic;
border-top: 1px solid #ccc;
margin-top: 0.5em;
padding: 0.2em 0;
}
#NewsPostDetailContent {
margin-bottom: 15px;
}
#NewsPostDetailAuthor {
padding-bottom: 1.5em;
font-style: italic;
}
/* to add specific style to the below divs, uncomment them. */
/*
#NewsPostDetailTitle {}
#NewsPostDetailHorizRule {}
#NewsPostDetailPrintLink {}
#NewsPostDetailReturnLink {}
*/


