Topic: Looks great in FF - IE7 no good
This is my first dive into .css as I had only used Frontpage 2000 up till now.
I am trying to add some text in my .css file that updates all 30 pages of my website as the "include" files did in Frontpage.
The following code works in FF but does not load in IE7.
.css code:-
p.whatsnew:after {
content: "I have revised the website using CSS (cascading Style Sheets) It certainly makes for smaller files which should decrease time to load. Please let me know if any links are broken or something doesn't work correctly. The website works best in Firefox ... I am still working on getting the website to display properly in Internet Explorer."
}
h2.update:after {
content: "15 October 2009"
}
Then in my .htm files:-
<div id="inner">
<h2 align="center">What's New</h2>
<hr>
<p class="whatsnew"></p>
</div>
This adds the first passage of text under the h2 heading"What's New"
And:-
<div id="footer">
<hr width=200 size=5 color="#506F89">
<h2 class="update" align="center">© Dennis Wright 2006 - 2009 - Last updated - </h2>
<hr width=200 size=5 color="#506F89">
</div>
This adds the date after the words "Last updated -" .. at least it does in FF but not in IE&.
Any clues for me please? Thanks in advance.
