Hi obinna79
I would like to answer your questions as follows:
1. the bullet pints are not appearing on the product listing on http://www.hpnig.net/beltek/
=> Please read this article: http://www.hpnig.net/beltek/index.php?option=com_content&view=article&id=49:Nickels-typography&Itemid=53
2. how do i make the body font black and heading blue?
=> heading:
open templates/ja_nickel/css/template.css file, at about line 52, find following code section:
h1, h2, h3, h4, .contentheading, .componentheading, .blog_more strong, .nftitle {
color:#004080;
font-family:Arial,Helvetica,sans-serif;
font-weight:normal;
line-height:1.2;
}
Here you change the color attribute to your idea.
=> For the color of body, in template.css file, find:
body {
background: #FFFFFF;
color: #0000000;
font-family: Arial, Helvetica, sans-serif;
line-height: 1.8;
}
body#bd {
background: url(../images/bg.gif) repeat-x top left;
color: #000000;
}
body.contentpane {
color: #000000;
font-size: 12pt;
line-height: 1.3em;
margin: 1em 2em;
width: auto; /* Printable Page */
}
Here you change the color to your idea.