Viewing 3 replies - 1 through 3 (of 3 total)
  • You have errors in your CSS file according to the W3 CSS Validator:

    Line: 35 Context : a , .feedback a , .meta a
    Invalid number : size attempt to find a semi-colon before the property name. add it

    Line: 0 Context : a , .feedback a , .meta a
    Invalid number : size Property size doesn't exist : 2

    Line: 223 Context : #menu
    Parse Error - : 290px;

    Line: 224 Context : #menu
    Parse error - Unrecognized : }

    YoB

    Thread Starter lady

    (@lady)

    Thanks
    Is that here
    https://www.beingll.com/wordpress/style.css

    rather than the information on the index.php ?
    I am not sure, exuse my ignorance I am only just beginning
    How do I find out where the errors are, and how do I know what to fix
    them ?

    Thanks

    There’s two errors you need to fix. The one YardOBeef mentions is in your style.css file. Right under == | MAIN LINKS |== is ‘a, .feedback a, .meta a’. You’ll see you’ve got ‘size: 2’ which is not valid. It should be something like ‘font-size: 2em;’

    What’s really causing your front page to be messed is an unclosed tag. On your about.php page, just above <div id=”content”> you have </h1>. That’s closing the <h1 id=”header”>. But you don’t close that tag in your index.php file and so the rest of you page inherits h1 tag properties (which, by default, happens to include giant text).

    By the way, validating is a great way to catch these silly mistakes. Head over to https://validator.w3.org/ and enter your sites URL.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Side bar and posts have grown enormous’ is closed to new replies.