Results 1 to 5 of 5
  1. #1
    Join Date
    Jun 2007
    Posts
    81
    Plugin Contributions
    0

    red flag Errors in Firefox

    I checked my site on Firefox

    Here are the list of errors that were found:
    Warning: Unknown property 'border-size'. Declaration dropped.
    Source File: https://secureinclude.ebaystatic.com...SL_e5211au.css
    Line: 15
    Warning: Error in parsing value for property 'font-style'. Declaration dropped.
    Source File: http://www.oddsnsods.com.au/includes...stylesheet.css
    Line: 131
    Warning: Expected identifier for pseudo-class or pseudo-element but found ' '. Ruleset ignored due to bad selector.
    Source File: http://www.oddsnsods.com.au/includes...stylesheet.css
    Line: 475
    Warning: Expected end of value for property but found 'background-color'. Error in parsing value for property 'margin'. Declaration dropped.
    Source File: http://www.oddsnsods.com.au/includes...stylesheet.css
    Line: 533
    Security Error: Content at http://www.oddsnsods.com.au/ may not load or link to file:///C:/Documents%20and%20Setting...y%20Taysia.jpg.
    Security Error: Content at http://www.oddsnsods.com.au/ may not load or link to file:///C:/Documents%20and%20Setting...l%20Yass23.JPG.
    Security Error: Content at http://www.oddsnsods.com.au/ may not load or link to file:///C:/Documents%20and%20Setting...l%20Yass92.JPG.
    Warning: Error in parsing value for property 'font-style'. Declaration dropped.
    Source File: http://www.oddsnsods.com.au/includes...stylesheet.css
    Line: 131
    Warning: Expected identifier for pseudo-class or pseudo-element but found ' '. Ruleset ignored due to bad selector.
    Source File: http://www.oddsnsods.com.au/includes...stylesheet.css
    Line: 475
    Warning: Expected end of value for property but found 'background-color'. Error in parsing value for property 'margin'. Declaration dropped.
    Source File: http://www.oddsnsods.com.au/includes...stylesheet.css
    Line: 533
    Security Error: Content at http://www.oddsnsods.com.au/ may not load or link to file:///C:/Documents%20and%20Setting...y%20Taysia.jpg.
    Security Error: Content at http://www.oddsnsods.com.au/ may not load or link to file:///C:/Documents%20and%20Setting...l%20Yass23.JPG.
    Security Error: Content at http://www.oddsnsods.com.au/ may not load or link to file:///C:/Documents%20and%20Setting...l%20Yass92.JPG.


    And I thought I was going great guns...obviously not. Can anyone help me with these issues. I am such a newbie at this and am struggling to understand all this coding etc.
    Thanks

  2. #2
    Join Date
    Apr 2006
    Posts
    265
    Plugin Contributions
    0

    Default Re: Errors in Firefox

    For a newbie, you're doing pretty well. That's a small number of errors to tackle (at this point - expect more :) ).

    Ok - so, one thing at a time.

    You have two general types of errors.

    First are the css errors. These have the words 'property', 'parsing', 'pseudo-class', 'pseudo-element', etc. (Except the first error - I'll come back to that one.)

    Conveniently, both the css file and the line with the error are in the error report.

    For example, the second error is on line 131 of stylesheet.css:

    font-style: bold;

    The error is that font-style does not have a bold value. The property you want is font-weight.

    Best thing to do is track down each of these errors one at a time, determine what is wrong, and fix them.


    Second, you have file location errors. Note the errors that start with 'file:///' - that prefix means that the browser should look to the local machine for the image file. For example, when I browse to your site, FireFox looks at my laptop for those image files. Obviously, this is not what you want.

    To fix this, I recommend placing those image files in a /includes/templates/my_template/images folder. After you've uploaded them, you'll need to fix the urls for file which I think are in /includes/languages/english/html_includes/my_template/define_main_page.php

    So you would change this:

    file:///C:/Documents%20and%20Settings/Raquel/My%20Documents/My%20Webs/Jan%206%20Lord%20Ludwig%20&%20Lady%20Taysia.jpg

    to this:

    includes/templates/my_template/images/Jan%206%20Lord%20Ludwig%20&%20Lady%20Taysia.jpg

    Now they'll be loaded from your server instead my computer. :)



    Finally, that first error. It has something to do with something you're using off of ebay. Sorry I can't be more descriptive - I don't use ebay for anything. However, since you can't change the css file, just ignore the error.


    Hope this helps,
    BrandTim

  3. #3
    Join Date
    Jun 2007
    Posts
    81
    Plugin Contributions
    0

    css problem Re: Errors in Firefox

    Thankyou - those are now done!
    However, if anyone else can help with the rest of the errors I would be ever so grateful. My site in Firefox is allover the page....

    The errors still to be fixed are:
    Warning: Unknown property 'border-size'. Declaration dropped.
    Source File: https://secureinclude.ebaystatic.com...SL_e5211au.css
    Line: 15 (Don't understand)
    Warning: Expected identifier for pseudo-class or pseudo-element but found ' '. Ruleset ignored due to bad selector.
    Source File: http://www.oddsnsods.com.au/includes...stylesheet.css
    Line: 475 (Can't find)
    Warning: Expected end of value for property but found 'background-color'. Error in parsing value for property 'margin'. Declaration dropped.
    Source File: http://www.oddsnsods.com.au/includes...stylesheet.css
    Line: 533 (Don't understand)

    My website is www.oddsnsods.com.au

  4. #4
    Join Date
    Apr 2006
    Posts
    265
    Plugin Contributions
    0

    Default Re: Errors in Firefox

    Quote Originally Posted by raquelann View Post
    Warning: Unknown property 'border-size'. Declaration dropped.
    Source File: https://secureinclude.ebaystatic.com...SL_e5211au.css
    Line: 15
    Ok, let me say it again. This error you must ignore. You cannot fix it. Notice how the source file is on the ebaystatic.com site? You do not have access to modify files on that site. It's their problem, but odds are they'll never do anything about it.

    Quote Originally Posted by raquelann View Post
    Warning: Expected identifier for pseudo-class or pseudo-element but found ' '. Ruleset ignored due to bad selector.
    Source File: http://www.oddsnsods.com.au/includes...stylesheet.css
    Line: 475
    You seem to have fixed this one... FF isn't showing it any more.


    Quote Originally Posted by raquelann View Post
    Warning: Expected end of value for property but found 'background-color'. Error in parsing value for property 'margin'. Declaration dropped.
    Source File: http://www.oddsnsods.com.au/includes...stylesheet.css
    Line: 533
    On the current line 534, this:
    Code:
    margin: 0em
    should be this:
    Code:
    margin: 0em;
    Note the missing semi-colon.

    BrandTim

  5. #5
    Join Date
    Jun 2007
    Posts
    81
    Plugin Contributions
    0

    Default Re: Errors in Firefox

    Cool- again thankyou. That is one set of problems completed. As much as this is a long task, I am actually enjoying it as I am learning so much...

 

 

Similar Threads

  1. v139h Suddenly, Multiple Errors in FireFox!
    By traytray in forum Templates, Stylesheets, Page Layout
    Replies: 7
    Last Post: 14 Nov 2012, 07:56 PM
  2. Firefox display errors in Win7
    By Soniccc in forum General Questions
    Replies: 6
    Last Post: 27 Jun 2010, 09:39 PM
  3. Validating errors in firefox
    By pasb in forum General Questions
    Replies: 9
    Last Post: 1 Aug 2009, 12:18 AM
  4. CSS Errors in FireFox Web Developer
    By Sweet ZouZou in forum General Questions
    Replies: 27
    Last Post: 29 Dec 2008, 03:47 AM
  5. Layout errors in IE. Firefox ok
    By strelitzia in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 4 Nov 2006, 11:31 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg