2011-11-18, 16:26:12
charles_i Wrote:Still struggling with the stylesheet issue. The link works to my stylesheet because it will style classes and <p> tag in the editor but only certain attributes of <a> will work. I can make anchor bold but can't change the colour or use text-decoration:none.
Make sure you don't have a more specific rule for a. You might need to also define a:hover, a:visited, etc. selectors. Are you sure that a#content is correct and it's not #content a?
You can also try to add !important as in text-decoration: none !important;.