Spreadsheet Widget Headers not showing after adding custom CSS

  • WebServ
    Asked on July 10, 2015 at 1:37 PM

    I am having trouble with my spreadsheet headers showing up in ie.  Can you help?

  • Mike
    Replied on July 10, 2015 at 3:27 PM

    The issue seems to be caused by injected CSS. Please also add the next CSS to fix the visibility issue in IE and other browsers.

    #col_A, #col_B, #col_C {
    visibility: visible;
    }

    If you need any further assistance, please let us know.

  • Mike
    Replied on July 10, 2015 at 3:29 PM

    I have missed the !important statement.

    The actual code:

    #col_A, #col_B, #col_C {
    visibility: visible !important;
    }

  • WebServ
    Replied on July 10, 2015 at 3:41 PM

    Thank you.  This works, but it now shows the A, B, C I was trying to hide.  Any ideas?

  • WebServ
    Replied on July 10, 2015 at 4:00 PM

    Here is a screen shot. 

     

  • Mike
    Replied on July 10, 2015 at 6:27 PM

    You can try the next CSS to hide the text by applying the same font color as background color.

    #col_A, #col_B, #col_C {
    color: #4b6e70;
    }

    #col_A:before, #col_B:before, #col_C:before {
    color: #FFFFFF;
    }

    Spreadsheet Widget Headers not showing after adding custom CSS Image 1 Screenshot 30

    It should work unless the text is selected.

    Spreadsheet Widget Headers not showing after adding custom CSS Image 2 Screenshot 41

    Thank you.