Forum Moderators: not2easy
.intext { font-family: Verdana, Arial, Helvetica, sans-serif, "Trebuchet MS"; font-size: 11px; font-style: normal; line-height: normal; font-weight: normal; color:#F93F3F}
.intt { font-family: Verdana, Arial, Helvetica, sans-serif, "Trebuchet MS"; font-size: 11px; font-style: normal; line-height: 13px; font-weight: bolder; color:#f93f3f}
And yet IE won't recognize them (Netscape does). The .css file this is in has other styles that all work in both browsers. If you wish to see the issue, it's at <Eeek!> home page.
I've been trying new things for over an hour and can't find a solution. Thank you for sharing your awesome brainpower!
[edited by: Nick_W at 4:46 pm (utc) on Sep. 23, 2003]
[edit reason] no urls please / thanks! [/edit]
You should have sans-serif last.
font-style: normal;
line-height: normal;
font-weight: normal;
Did you override these in a parent element? If not, you don't need to specify them.
And for the record, I've seen IE doing the wrong thing far far more often than standards compliant browsers do. IE is broken.
Here is the html code from the page:
<div id="Layer8" style="position:absolute; left:200px; top:410px; width:600px; height:90px; z-index:14">
<p class="intext">blah blah blah substituting fake text here <a href="faq.htm">Learn more</a>. </p>
<p><span class="intt">secret name</span><span class="intext"> blah blah more fake text</span></p>
<p><span class="intext">Choose one of the options below
or call us to discuss your new idea!</span></p>
</div>
It doesn't seem to make a difference whether I use <p class="intext"> or the span option.
For reference, here is the css snippet again:
.intext { font-family: Verdana, Arial, Helvetica, sans-serif, "Trebuchet MS"; font-size: 11px; font-style: normal; line-height: normal; font-weight: normal; color:#F93F3F}
.intt { font-family: Verdana, Arial, Helvetica, sans-serif, "Trebuchet MS"; font-size: 11px; font-style: normal; line-height: 13px; font-weight: bolder; color:#f93f3f}
FYI: I'm using Dreamweaver 3 (Mac) and editing the css in SimpleText
There is one other area with text and that style (from the same style sheet) is working fine.
I made sure the css link to the page is correct and uploaded that at the same time as the html page.
2. Try p.intt, span.intt{css declarations here} to increase specificity. Do this for both intt and intext
A very embarassing thing happened on the way to the forum. . .
I had to reboot the computer and now the site works! The first rule in diagnosing a problem and would you know it, it works. A problem I won't repeat.
Thank you, though, for proving this forum to be a great support site for webmasters. Everyone here -- especially awildman -- is awesome!