• Presskopp

    (@presskopp)


    When I look at
    http://kopatheme.com/demo/nictitate/
    with
    http://validator.w3.org/

    I see a lot of errors, especially this one:

    “Character reference was not terminated by a semicolon.”

    <i data-icon=”&#xe014″></i> and so on

    where it should be

    <i data-icon=””></i>

    So I changed line 23 and 25 in custom_walker.php to

    $icon = ‘<i data-icon=”‘ . $kopa_icons[$icon] . ‘;”></i>’;

    and

    $icon = ‘<i data-icon=”‘ . $kopa_icons[‘home’] . ‘;”></i>’;

    but this didn’t change anything!?

    What to do? Thank you!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter Presskopp

    (@presskopp)

     should be …xe014;

    Thread Starter Presskopp

    (@presskopp)

    but this didn’t change anything!?

    Sure, it did, but I had to clean cache..

    So I fixed a bug here 😉

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘HTML Validator Errors’ is closed to new replies.