I have looked at your site and, on reflection, I have split this topic from the original one which actually has nothing to do with your current questions.
Your questions relate to why your Joomla site template makes a mess of Kunena on your site. This falls into the category of
K 1.7 Templates and Design
and I have moved your topic there. If you look at the category description you will see the following:
...please read sticky topics and, as general background,
My Joomla template is making a mess of Kunena
.
When you read that article you may then understand that it is not our responsibility to fix the mistakes made by other Joomla template developers.
However, your problems are very easy to fix.
Add the following to the end of your Joomla site template CSS file:
Code:
#Kunena {
color: black;
}
The reason you have the "odd" bullet points is because of the rule in your Joomla site template CSS file that reads:
Code:
.ja-moduletable ul li, .ja-module ul li, .ja-content-main ul li {
background: url("../templates/ja_norite/images/bullet.gif") no-repeat scroll 18px 6px transparent !important;
line-height: 160%;
margin-bottom: 5px;
overflow: hidden;
}
Remove or comment-out the line "background: url" and this will remove those black bullet points.
You also need to fix up the select forum elements. Same approach; Add the following to the end of your Joomla site template CSS file:
Code:
#Kunena select, #Kunena select:focus, #Kunena select:hover {
background: white;
}
As you can see, easy to fix when we can see the problems at first hand. It took me about 5 minutes to find the problems; 15 minutes to post this message with the answers. You could have also done this yourself in next to no time, too, by reading
How do I change the colours of my template in Kunena?
using
Firebug
for
Firefox plus a little educated guesswork and a basic knowledge of CSS syntax.
Does this answer your styling questions?