Search code examples
bloggerblogspoterror-messaging

2 errors messages in Blogspot


I don't know how to code, so please give me detail answer so I can fix my blog.

here the errors message when I "inspect" my blog page

Message error number 1: Uncaught SyntaxError: Invalid or unexpected token

message error number 2: Uncaught TypeError: Cannot read property 'innerHTML' of null at repText (aplikasi-untuk-bisnis-online-maju-dan.html:1502) at aplikasi-untuk-bisnis-online-maju-dan.html:1502

what should I do to fix that? and if I ignore the errors messages is that okay or not okay? Thank You


Solution

  • Your blog comments are hidden on mobile devices by the following CSS code

    @media screen and (max-width:384px){
    #comments,ul#related-summary li img{display:none}}
    

    So you need to remove #comments selector from prev code in order to show comments on mobile or adding this code to override CSS rule

    div#comments {
        display: block !important;
    }