Why do all h3 tags have red background on all websites?

Sometime today all of the h3 tags on any page, any website began appearing with a red background color applied. When I check the element with Firebug, it shows the color being applied from file html.css <System>.
Checking same pages in Internet Explorer, Opera, Chrome and Safari -- all in Windows -- this doesn't happen.

Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]
You can also try "Reset all user preferences to Firefox defaults" on the [[Safe mode]] start window.

Similar Messages

  • Why do all websites visited not appear in the Permissions Manager list?

    Some websites I visit (e.g., play.com) do not appear in the list on the left of Permissions Manager. However when I click 'Manage cookies' they do appear, with a list of cookies set. Is this due to some setting I don't know about? How can I stop it happening? OS is Windows 7.

    you can also access the permissions of a page when you're visiting it by right-clicking & going to ''view page info > permissions''.
    [[Page Info window - View technical details about the page you are on]]

  • JTable: After one row is modified, the row should have red color background

    After one row is modified(using setValueAt()),
    I want the modified row to have red color background color.
    How can I do that? I tried.
    JTableInstance.setBackground( Color.RED);But it sets all the rows not the only modified row.

    import java.awt.*;
    import java.util.ArrayList;
    import javax.swing.*;
    import javax.swing.table.*;
    public class TableChangeTest extends JFrame {
        public TableChangeTest() {
            initComponents();
            renderer = new MyTableRenderer();
            table.setDefaultRenderer(String.class, renderer);
            int row = 0;
            table.setValueAt("test1",row,0);
            rowsChanged.add( row );
            row = 2;
            table.setValueAt("test2",row,1);
            rowsChanged.add( row );
        private void initComponents() {
            panel = new JPanel();
            scrollPane = new JScrollPane();
            table = new JTable();
            setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
            setTitle("Table Change");
            panel.setLayout(new BorderLayout());
            table.setModel(new DefaultTableModel(
                    new Object [][] {
                        {"1", "a"},
                        {"2", "b"},
                        {"3", "c"},
                        {"4", "d"}
                    new String [] {
                "Title 1", "Title 2"
                Class[] types = new Class [] {
                    java.lang.String.class, java.lang.String.class
                public Class getColumnClass(int columnIndex) {
                    return types [columnIndex];
            scrollPane.setViewportView(table);
            panel.add(scrollPane, BorderLayout.CENTER);
            getContentPane().add(panel, BorderLayout.CENTER);
            Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
            setBounds((screenSize.width-357)/2, (screenSize.height-241)/2, 357, 241);
        public static void main(String args[]) {
            new TableChangeTest().setVisible(true);
        private JPanel panel;
        private JScrollPane scrollPane;
        private JTable table;
        private TableCellRenderer renderer;
        private ArrayList rowsChanged = new ArrayList();
        class MyTableRenderer extends DefaultTableCellRenderer {
            public Component getTableCellRendererComponent(
                    JTable table,
                    Object value,
                    boolean isSelected,
                    boolean hasFocus,
                    int row,
                    int column) {
                super.getTableCellRendererComponent(table,
                        value, isSelected, hasFocus, row, column);
                setBackground( Color.white );
                if( rowsChanged.contains(row) ) {
                    setBackground( Color.red );
                return this;
    }

  • Why do topic question mark icons have red x's?

    Hi,
    I was given some RH files to update.  But when I open them in RH HTML v. 8, all the topics have red x's on them.  And when I try to open a topic, I get a TOC Page Properties dialog box.  Could you help?  It's possible I don't have the right files...
    Thanks,
    Erin

    When I have had RoboHelp just up and quit on me it's usually because of a  mismatch in CBT processing instructions resulting from me editing the  files outside of RoboHelp (it's hard to find a good WYSIWYG HTML editor,  and RoboHelp is no exception to this rule).
    If you could import the files from an earlier version of the project, that would probably be the simplest solution (assuming it works). If it doesn't work (or if you're just plain curious about how RoboHelp works [or doesn't]) read on.
    First of all, you are comfortable working with raw HTML in a simple text editor, right? Good.
    RoboHelp implements Conditional Build Tags by inserting XML Processing Instructions into the XHTML source files. If you were to mark a paragraph with a CBT and then look at the HTML source you might see something like this:
    <?rh-cbt_start condition="MyFilter" ?>
    <p>This is a paragraph. It consistes of one of more complete sentences which discuss a single thought or topic. Do not use paragraphs as line-breaks; they are two completely different concepts.</p>
    <?rh-cbt_end ?>
    If you find a <?rh-cbt_start ?> Processing Instruction in a file, then that file uses Conditional Build Tags. If there is no "<rh-cbt_ ..." text in the file, then you can skip the next section (but you don't need to if you want to learn more about CBTs).
    Every <?rh-cbt_start ?> PI requires a <?rh-cbt_end ?> PI. Block-level elements (<div>, <p>, <ol>, etc.) each need to have there own CBTs; nested CBTs around block-level elements tend to make RoboHelp confused. For example, if you were to build a file containing:
    <?rh-cbt_start condition="MyFirstFilter" ?>
    <p>Paragraph 1</p>
    <p>Paragraph 2</p>
    <p>Paragraph 3</p>
    <?rh-cbt_end ?>
    RoboHelp would import it, but after a single edit the above section would be rewritten as:
    <?rh-cbt_start condition="MyFirstFilter" ?>
    <p>Paragraph 1</p>
    <?rh-cbt_end ?>
    <?rh-cbt_start condition="MyFirstFilter" ?>
    <p>Paragraph 2</p>
    <?rh-cbt_end ?>
    <?rh-cbt_start condition="MyFirstFilter" ?>
    <p>Paragraph 3</p>
    <?rh-cbt_end ?>
    If, on the other hand, your original file was:
    <?rh-cbt_start condition="MyFirstFilter" ?>
    <p>Paragraph 1</p>
    <?rh-cbt_start condition="MySecondFilter" ?>
    <p>Paragraph 2</p>
    <?rh-cbt_end ?>
    <p>Paragraph 3</p>
    <?rh-cbt_end ?>
    you end up with your CBTs mixed together in a way I haven't quite figured out yet. While I cannot speak definitively, I think that if you don't get the end PI's just right RoboHelp goes into an infinite loop on loading the project, and the process tree has to be killed from the Task Manager.
    My first suggestion is to start with a single file, and using a simple text editor go throught and delete every "<?rh-cbt_..." processing instruction you find.
    If removing all CBT Processing Instructions does not fix your problem, you may have invalid XHTML files. As you may have gathered, RoboHelp is not very robust when loading files it did not create itself (or which you have hand-edited, like I frequently do); as a programmer, I'm not very tolerant of this kind of cavalier approacy to error handling.
    There are a number of tools that can help detect invalid XHTML files. One of the most common (and the one built into RoboHelp) is the open-source HTML Tidy (http://tidy.sourceforge.net/). Some people like xmllint. The Microsoft
    Visual Web Developer Express (free with registration) can also validate documents (and is a very good HTML editing environment as well).
    Of course, troubleshooting a single HTML file by hand is not terribly difficult. Open the file in a text editor, and immediately after the body element place a comment string, ending the comment before the ending body element; viz:
    <html>
    <head>
    </head>
    <body>
    <!-- this is a comment
    this ends the comment -->
    </body>
    </html>
    Try importing this file. If it still doesn't import you have bad headers (maybe an unterminated <meta> element?). If it succeeds, keep moving the starting comment down by paragraphs until the import is unsuccessful. Move the comment back to the last successful position. Then do the same with the closing comment, moving it up until unsuccessful. You should now have isolated the portion of the file that is causing the problem. Delete that section, and retype it inside RoboHelp.
    I hope this has given you some ideas about where to go from here.

  • Why is it that Apple have no interest in helping I have a iPhone 4S and since updating to ISO 7.0.4 I have no wifi at all told me it's a hardware issue and I will be charged for the repair sick of it what a scam

    Why is it that Apple have no interest in helping I have a iPhone 4S and since updating to ISO 7.0.4 I have no wifi at all told me it's a hardware issue and I will be charged for the repair as it's just over a yr old so I've got a 24 month contract so 12 months with a phone that is not working right I have read loads of other people that have the same problem so how can they put it down to the phone and when asked where to take it was told to google it not happy at all apple u need to sort it out never again am I buying anything for yourselfs again DISTGUSTED would be an understatement

    No joy at all they just keep saying it's the phone but was fine before update and @metasolaray why should I pay for extra cover when the fault is not the phone but the update they have put out for everyone to install and I am far from being the only person as there is hundreds of people going through the same with this update and it's not been the first time they messed it up
    WIFI disabled - Greyed out since iOS 7 update on iphone 4s
    56888 Views 229 Replies Latest reply: Dec 8, 2013 9:14 AM by Cheney1980   Branched to a new discussion.
    Go to original post 1 ... 6 7 8 9 10 ... 16  Previous Next
    Calculating status...
    sugaaarbabe
    Re: WIFI disabled - Greyed out since iOS 7 update on iphone 4s
    Oct 14, 2013 9:18 AM (in response to Tarrantion82)
    Apple should take resonsibility for this, otherwise they will lose lots of loyal customers. I have moved away from the ipad due to expense and am now very tempted to do so away from the iphone. Selling a product that prompts an update that breaks the phone is not good.
    Like (0) Reply
    Calculating status...
    punkinbits
    Re: WIFI disabled - Greyed out since iOS 7 update on iphone 4s
    Oct 14, 2013 11:31 AM (in response to Tarrantion82)
    Have had the same issues with iPhone 4S since the upgrade.  No wifi button, battery draining every 8 hours with no use, phone shutting on &amp; off for no reason at all.  I gave in and tried the hair dryer method.  Turned the phone off and hel d the dryer over the camera lense area for one minute.  Turned the phone back on and to my shock, had wifi button back again.  That was 2 days ago.  Battery is lasting normal amount of time again and I can use wifi again!  Hopefully this will last.  I know it doesn't work for everyone but it doesn't hurt to try.  Much better than spending the $200 at the Apple store, which by the way, the genius said Apple is aware of the problems but there is nothing they can do.
    Like (2) Reply
    Calculating status...
    Shell1331
    Re: WIFI disabled - Greyed out since iOS 7 update on iphone 4s
    Oct 15, 2013 1:07 AM (in response to Tarrantion82)
    I have exactly the same issue, apple are phoning me this evening.  I am not happy and this has really put me off using iphone.  It's my first iphone and if Apple don't fix it, it will be my last iphone!!
    Like (1) Reply
    Level 1 (0 points)
    lin777
    Re: WIFI disabled - Greyed out since iOS 7 update on iphone 4s
    Oct 15, 2013 3:17 AM (in response to Shell1331)
    you will be fine if you have warranty
    If not Apple won't want to know
    I know I've tried but they will not help.
    I've email bbc watchdog the consumer
    Programme to see if they can help.
    GOOD LUCK
    Like (0) Reply
    Calculating status...
    justezenu
    Re: WIFI disabled - Greyed out since iOS 7 update on iphone 4s
    Oct 15, 2013 4:47 AM (in response to Tarrantion82)
    Mine happened to with an update.  I had nothing wrong before that.
    Like (0) Reply
    Level 1 (0 points)
    justezenu
    Re: WIFI disabled - Greyed out since iOS 7 update on iphone 4s
    Oct 15, 2013 4:50 AM (in response to lin777)
    I am booked in for the same problem on Thursday.  Looks like I won't have much luck.
    Like (0) Reply
    Calculating status...
    ljguadagnini
    Re: WIFI disabled - Greyed out since iOS 7 update on iphone 4s
    Oct 15, 2013 1:11 PM (in response to justezenu)
    Having the same issue: iOS 7.0.2 with no WiFi / poor Battery stamina and really slow software experience when opening several options at Settings icon.
    Apple care agent contacted me and we try all alternatives to isolate and detect if this is regarding a hardware problem. Of course they told me it is. Too sad. My phone is in immaculate condition.
    My mother has an Iphone, my father has an Iphone, my 2 sisters have Iphones, my brother, wife and daugther... we all have Iphones. Mine's the only one with this fault (my personal experience: fail prob is 12,5% -1 out of 8).
    At this point, I'm evaluating to stop buying apple products for fear that in the future the same will happen with some "premium" product that ultimately they are not.
    Too sad, sorry but this is too much.
    Like (4) Reply
    Level 1 (0 points)
    lin777
    Re: WIFI disabled - Greyed out since iOS 7 update on iphone 4s
    Oct 16, 2013 5:08 AM (in response to ljguadagnini)
    Join the IOS 7.02 not working club.COME ON APPLE DO SOMETHING YOU MUST B READING ALL THE
    COMMENTS.ive emailed bbc watchdog consumer programme havent had reply yet.
    Like (0) Reply
    Level 1 (0 points)
    Jungletooth
    Re: WIFI disabled - Greyed out since iOS 7 update on iphone 4s
    Oct 16, 2013 6:15 AM (in response to lin777)
    I got my 4s in August 2012, as an upgrade on my Vodafone contract Following the installation of IOS 7 I also experienced greying out of wifi and bluetooth. I tried various options suggested on forums however none worked. I took my phone to Vodafone who told me it was a problem they were aware of but couldn't do anything about as Apple had to deal with it. I took it to my nearest Apple store (60 miles round trip!) to be told it was not their responsibility, it was Vodafone's - something to do with consumer law! They also said I would have to pay £160 for a replacement phone as it couldn't be repaired. The 'Genius' was very cagey about it being a common problem by the way!! Back to Vodafone who said it was not their responsibility so back to Apple. This time I spoke with a Manager who told me in not so many words that it was an issue and agreed to halve the replacement cost of £160 to £80. By this time I just wanted it sorted to reluctantly paid £80 for a replacment phone. Seeing as this is CLEARLY a design fault, Apple should have replaced it free of charge. This experience just confirms what I am reading in lots of places about the Apple Company. I was going to buy an iPad but have decided not to now. I shall NOT be replacing the iphone when my contract is up. I too will be writing to BBC Watchdog.
    Like (2) Reply
    Level 1 (0 points)
    Jungletooth
    Re: WIFI disabled - Greyed out since iOS 7 update on iphone 4s
    Oct 16, 2013 6:18 AM (in response to justezenu)
    justezenu wrote:
    I am booked in for the same problem on Thursday.  Looks like I won't have much luck.
    You will probably be told that the solution is a replacement phone. Ask to speak to a Manager and insist on getting it at a lower price. I did this and got it at 50% of the usual repacement cost. Still not ideal but at least it saves you a bit of the money you shouldn't have to pay in the first place!
    Like (0) Reply
    Level 1 (0 points)
    lin777
    Re: WIFI disabled - Greyed out since iOS 7 update on iphone 4s
    Oct 16, 2013 6:58 AM (in response to Jungletooth)
    Yes I had the same problem with 02 and apple no one wants to take the blame.Im glad you are writing to watchdog
    As well every one must email them or write to them and I'm sure they will take up the problem for us all.
    Like (0) Reply
    Calculating status...
    vinayak4816
    Re: WIFI disabled - Greyed out since iOS 7 update on iphone 4s
    Oct 19, 2013 7:24 AM (in response to Tarrantion82)
    no
    Like (0) Reply
    Calculating status...
    Jerome101
    Re: WIFI disabled - Greyed out since iOS 7 update on iphone 4s
    Oct 19, 2013 8:30 AM (in response to ljguadagnini)
    I depend alot on my Iphone and this Wifi greyed out issue is really getting to me!! This caused me to lose some business, but I'm sure I will make up for that in Andriod World. Switching back to andriod should have never switched to apple in the first place.
    Like (0) Reply
    Calculating status...
    Deanmort13
    Re: WIFI disabled - Greyed out since iOS 7 update on iphone 4s
    Oct 19, 2013 9:22 AM (in response to Tarrantion82)
    4s owner in the same boat as everyone else.
    I setup a service call with apple on Monday this week and was told it's quite a common hardware failure. When I asked why I should be paying for a new phone I was advised to book an appointment in store. Well I've just returned from my appointment with a "genius" who told me that when the update is installing if any component is weak when installing it will be permanently disabled.  Was then told £150 for a new phone which I declined.
    I've had  iPhones for 4 years now but due to this issue and apple washing their hands of any responsibility it will be my last.
    Disappointed that a premium product has such poor backup from the manufacturer. If it was only my phone and not thousands of others I'd have probably paid for a new phone but I'll never give apple another penny again.
    Like (1) Reply
    Calculating status...
    Coatezy
    Re: WIFI disabled - Greyed out since iOS 7 update on iphone 4s
    Oct 19, 2013 11:16 AM (in response to Tarrantion82)
    Same problem with my partners iPhone 4s. Restored the device but still no luck. Going to book an appointment but it sounds like we wont have much luck as it is just over a year old.
    Nexus 5 time I think for both of us.
    Like (0) Reply
    1 ... 6 7 8 9 10 ... 16  Previous Next
    Up to Discussions in iPhone Hardware  Go to original post Reply to original post

  • Hello, why is all of my music on my iphone but only a few songs on my itunes on my laptop? it seems like its not updating on my laptop because it still says i have credit and i know i that there isnt any please help thanks

    hello, why is all of my music on my iphone but only a few songs on my itunes on my laptop? it seems like its not updating on my laptop because it still says i have credit and i know i that there isnt any please help thanks

    If they are iTunes purchases that you bought on your phone then have you copied them over from it to your computer's iTunes ? If that is the computer that you sync the phone to then you should be able to copy them over by connecting it and doing File > Devices > Transfer Purchases. Or (depending upon what country that you are in) you might be able to redownload them directly on your computer's iTunes via the Purchased link under Quicklinks on the right-hand side of the iTunes store homepage.
    In terms of your account's balance, have you tried logging out of your account on your computer (Store > Sign Out menu option) and then logging back in (it will change to a Store > Sign In option) and seeing if your balance changes ?

  • If I have multiple browser windows open (not tabs, windows) and I close 1 of them, why do ALL browser windows close?

    If I have multiple browser windows open (not tabs, windows) and I close 1 of them, why do ALL browser windows close?

    How are you closing the window?
    Are you using the File menu or the close X on the title bar?
    Use Alt + F to open the File menu with the Close Tab entry visible (doesn't work with the mouse).

  • I have an iPad 1. Using e-mail why do all my received attachments end up as winmail.dat files?

    I have an iPad 1. Using e-mail why do all my received attachments end up as winmail.dat files?

    http://support.apple.com/kb/TS1506
     Cheers, Tom

  • Why is Acrobat 11 NOT showing colored backgrounds I have in my ID files?

    Why is Acrobat 11 NOT showing colored backgrounds I have in my ID files? I can see them in Acrobat 10 just fine but I would prefer to switch up to 11...

    http://answers.acrobatusers.com/PDF-Background-Appears-Grey-screen-paper-Acrobat-X-v10-00- q34894.aspx this fixed worked for me. Thanks for Facebook and https://www.facebook.com/adobeacrobat

  • HT5557 Why are all my books that I have purchased no longer in my library?

    Why are all my books that I have purchased no longer in my library?

    The problem is, if I'm in an area that I don't have service or Wi-Fi and I want to read a book that I have purchased and paid for and I can't retrieve it...it is extremely annoying. I have paid A LOT of money for MANY MANY ebooks.  I HAVE NOT DOWNLOADED THE NEW 7.0 SYSTEM BECAUSE I DO NOT LIKE IT. I HAVE IT ON MY IPHONE AND IT HAS TOTALLY SCREWED UP MY CALENDAR AND A FEW OTHER APPS.  I DID NOT WANT THE CHANGES ON THE IPAD TOO.  In other words, I have done nothing different.  My Kindle app is working great and has twice to five times more e-books in it.  The sad part is that iBooks charges more and does not get the new releases out as well and timely as Amazon.  I use Amazon more often now but I do like to keep my series together and for that reason I of still use them occasionally. 

  • Why did all my scroll bars disapear? I don't have any option in my System Preferences to always turn scroll bars on (as suggested)

    Why did all my scroll bars disapear?
    I don't have any option in my System Preferences to always turn scroll bars on (as suggested)

    Sweet... all better now.
    I was looking in my FINDER preferences, not my APPLE preferences.
    Thanks for clearing that up for me.

  • My home movie DVD folders all have red circle with white dash and won't allow the files to be read. Is there any way around this so I can back up the DVD's on a external HD?

    My home movie DVD folders all have red circle with white dash and won't allow the files to be read. Is there any way around this so I can back up the DVD's on a external HD?

    Drag the folders to the external drive, and if prompted, click Authenticate. You'll probably be asked for an administrator password.
    (116608)

  • SWF Files do not work in Firefox. My sites work fine in Explore & Safari? Why is this? I have updated all my plugins, reinstalled yet still nothing?

    SWF Files do not work in Firefox. My sites work fine in Explore & Safari? Why is this? I have updated all my plugins, reinstalled yet still nothing?

    Can you post a link?
    Does that only happen on that website or do you have that problem with all Flash content?
    Reload web page(s) and bypass the cache.
    * Press and hold Shift and left-click the Reload button.
    * Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    * Press "Cmd + Shift + R" (MAC)
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode

  • Downloaded adobe reader, i have been inputting info into some forms, the areas I populate all have red squares around them, what does this mean?

    downloaded adobe reader, i have been inputting info into some forms, the areas I populate all have red squares around them, what does this mean? mac book pro as well. The forms i have been working on are from Canada Immigration, has any one else experienced this? thanks and yes I am new here, lol.

    Yes thank you I figured it out. Lol
    Sent from Samsung Mobile

  • Why does it show I have an unopened email when they all show individually as read?

    Why does it show I have an unopened email when they all show individually as read?

    HI, did you manage to resolve this issue?
    I've just bought a mac and installed Office. I imported my emails  over from windows as a pst file which worked fine. Now when i recieve an  email, outlook shows it has arrived in the inbox but i cant find it  anywhere?
    I have rebuilt my identity and checked all rules and  schedules but cant find anything wrong. I've even deleted the account  and reinstalled it but its still the same?

Maybe you are looking for

  • Blackberry 10 OS software update

    My blackberry Z10 is currently running on 10.0.9.348. And I'm trying to install whatsapp which requires at least 10.0.10 or higher. The problem is I cannot update the software and everytime I check for software updates I get a massage saying that I h

  • Company Code creation for non SAP transaction company

    Hi Expert, Need your advice.  The user requesting to create customer/vendor master data for a new inter company for their AR/AP posting. However this inter company do not have full setup of SAP configuration (eg. GL/Cost center/Profit center). So, co

  • Do i need wire less connection to verify my itunes account and to use my itouch?

    do i need wire less connection to verify my itunes account and to use my itouch?

  • Itunes 7.0.2, should I?

    After using iTunes 7.0 and 7.0.1, I decided to downgrade to 6.0.5 due to 7 constantly closing/crashing at random occasions, mostly after a song. Have these issues been addressed in 7.0.2?

  • How to set NLS character set for report 9i servlet output?

    Hi, I am running a Reports 9i report. My problem is that the output HTML file is UTF8 encoded while ALL my 9iASR2 registry setting are set to EEISO8859P2. When I issued the http://<host:port>/reports/rwservlet/showenv?server=servername command it ret