CSS Inserts are not working as usual to style a new site I am building with Atahualpa 3.7.12 and Wordpress 3.7.1.
For example, the following CSS code (which has always worked on previous sites with Atahualpa 3.7.12 and previous Wordpress versions) now does not style the color of the link text with the RSS Post icon:
Code:
a.posts-icon {
color: #ffffff !important;
}
And, the following code suggested in a forum here, also does not work to style the link text with the RSS posts icon:
Code:
div.rss-box a:link,
div.rss-box a:visited,
div.rss-box a:active {
color: #ffffff; }
Also, the following CSS code (which works on all my other sites with Atahualpa and Wordpress) now does not add borders under "Associated posts" displayed on a page via the post-page associator plugin:
Code:
div.associated-post {
border-bottom: 1px solid #cccccc;
}
This code should work, since the Page source code for the associated posts is:
Code:
<div class="associated-posts">
<div class="associated-post">
Are there known issues with CSS Inserts in Atahualpa 3.7.12 with Wordpress 3.7.1? I did not have this problem with the previous site I built - with Atahualpa 3.7.12 and Wordpress 3.5.2.
If necessary, how can I revert back to Wordpress 3.5.2?
Many thanks for any help!