My Question help text is shown with white font and small characters. I am not sure why (perhaps due to recent css changes I did on the site) and wish to change this.
Could you advise the css code for changing the font color and font size?
|
|
My Question help text is shown with white font and small characters. I am not sure why (perhaps due to recent css changes I did on the site) and wish to change this. Could you advise the css code for changing the font color and font size? |
||
|
|
|
|
Here is the current CSS definition that is controlling the formatting.
On a side-note, it is really easy to discover this information without driving yourself crazy coming over here asking for help each time. In the spirit of "teach a man to fish...", I'm going to offer the simplest possible way to explore the CSS properties for your site. If you continue to have trouble, we're more than happy to help. But try this out to see if it is an easier way to reach your goals.
To "inspect" the HTML/CSS on your web pages:
Cool, huh? On the left is the HTML of what you are pointing to. To the right is the CSS definition controlling the formatting. Even if you are not a super-ninja CSS guru, this technique makes it really easy to answer those "how do I change this color" -type questions. Note: I want to "document" this procedure in a screen cast I have been putting together (maybe as a series) but I haven't had the chance to finish it. Soon. In the meantime, I hope this helps. Enjoy. |
||||
|
|
|
You're seeing this because the CSS selector I suggested in this answer is also matching the Question help text. You can partially remedy this by adding a wrapping div round one or other of the modules so you can identify it by id. The problem with setting the background this is that the inner div may then have a border around it and look a little odd. For example, setting the content for the Question help as follows:
Then set the CSS for the content as follows:
Will match the div's contents and make the text red and background yellow. Omit the first selector to inherit the background. |
||
|