There will be no more development for Atahualpa (or any other theme), and no support. Also no new registrations. I turned off the donation system. I may turn the forum to read only if it gets abused for spam. Unfortunately I have no time for the forum or the themes. Thanks a lot to the people who helped in all these years, especially Larry and of course: Paul. Take care and stay healthy -- Flynn, Atahualpa developer, Sep 2021
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
#3
Mar 15, 2013, 04:04 PM
jerryc
367 posts · Oct 2012
Florida
Quote:
Originally Posted by tisker
Any idea why text that has been clearly bolded in the editor of a post, once published, only shows bolded for Chrome and not IE or Firefox?
It sounds like a validation error that Chrome is making the right guess about but the other browsers aren't. Did you validate your code?
#4
Mar 16, 2013, 10:25 AM
dmkjr
19 posts · Mar 2013
I had that same problem. The issues with IE are ridiculous. I changed the process of how I was making the content bold by using all CSS and not just and HTML < strong > tag.
#5
Mar 18, 2013, 09:57 AM
tisker
7 posts · Feb 2013
Thanks everyone, I discovered the problem.
The editor by default is using <b> tags and not <strong> tags to indicate bolding.
I was able to fix the issue by adding the following CSS to the site CSS override.
strong, b {
font-weight: bold;
}
Thanks, sorry!
-Kyle
(BTW, site is not live yet so nothing to preview to you all, thanks much.)