2011-11-18, 07:54:33
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. In my CSS I've tried both ways:
and
only bold and the font face and size work. Any idea why?
Also, I tried completely removing all the themes and my content still shows up in the editor. Is there a hierarchy like in WordPress? Is there a file in GS that content will fall back on if there is no theme? I wonder if that is somehow overriding some of my styles.
Code:
a { font-family:Verdana, Geneva, sans-serif; font-size:11px; color:#5b6100; text-decoration:none; font-weight:bold; }
and
Code:
a#content { font-family:Verdana, Geneva, sans-serif; font-size:11px; color:#5b6100; text-decoration:none; font-weight:bold; }
only bold and the font face and size work. Any idea why?
Also, I tried completely removing all the themes and my content still shows up in the editor. Is there a hierarchy like in WordPress? Is there a file in GS that content will fall back on if there is no theme? I wonder if that is somehow overriding some of my styles.