am pretty new to this CMS and .css stuff...but have been mightily impressed with CMSMS in the last few days of using it...
i've hit a small stumbling block tho with regards to the bookmarks module - how do i set the font type and size in the .css i've tried a variety of diffent syntax based on the news module and have read the code from start to finish in the bookmarks.php file to get some idea of where i'm going wrong...here s c&p of my latest stab in the dark with .css

Code: Select all
.cms-module-news {
display: block;
margin-bottom: 10px;
padding: 10px;
border: 1px solid #777;
}
.cms-news-date {
color: #DD0000;
font-weight: bold;
font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 14px;
}
.cms-news-title {
color: #006400;
font-weight: bold;
font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 14px;
}
.cms-news-content {
color: #000;
font-size: 1.1em;
display: block;
margin-top: 4px;
font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px;
}
.cms-bookmarks-title {
color: #006400;
font-weight: bold;
font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 14px;
}
.cms-bookmark-url {
color: #000;
font-size: 1.1em;
display: block;
margin-top: 4px;
font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px;
}
Geo.