| Re: help needed to change username and post number font color in cbb 3.0.8 |
| by magowiz on 2009/10/24 19:03:27 I found that cbb uses its own stylesheet that can be located at modules/newbb/templates/newbb.css I changed from : le="color: #000000"><?php .comUserName a { color:#dcdcdc;} .comUserName a:hover { color:#999999;} .comTitle a { color:#dcdcdc;} .comTitle a:hover { color:#999999;} to : le="color: #000000"><?php .comUserName a { color:#303030;} .comUserName a:hover { color:#1B1B1B;} .comTitle a { color:#303030;} .comTitle a:hover { color:#1B1B1B;} to have two types of dark grey because mine background is white. |
| Re: help needed to change username and post number font color in cbb 3.0.8 |
| by magowiz on 2009/10/24 18:45:32 On theme.html from my theme the only other css is xoops.css that is in my root dir. The colors in xoops.css are only red and black , so in that file there are no traces of the grey . I read in a comment here https://xoops.org/modules/news/article.php?storyid=3037 that it is a known bug in cbb, so I really don't know if it is related to mine stylesheet. |
| Re: help needed to change username and post number font color in cbb 3.0.8 |
| by ghia on 2009/10/24 18:33:34 Check your header in the HTML source. There are maybe other CSS files in play. Did you add it on the back? Do also after CSS changes a reload in the browser or clear its cache. |
| help needed to change username and post number font color in cbb 3.0.8 |
| by magowiz on 2009/10/24 18:08:08 Hi, on my website I have a problem with a theme, the username and post number in cbb are displayed in a bright grey with a blank background, is there a way to change that font color? I tried to search on my theme style.css and I used the document "Anathomy of the default theme" to understand the meaning of that rules but I didn't find nothing useful. I also tried to insert a rule like this (I didn't have this rule on my style.css) : le="color: #000000"><?php .comUserName { color: #000000; } but It didn't change anything. |