Custom CSS not affecting the website

Home Forums Gillion Theme Custom CSS not affecting the website

Home Forums Gillion Theme Custom CSS not affecting the website

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    RESOLVED Posts
  • borishar
    Participant

    I can not seem to add any custom CSS to any additions using gillion theme.

     

    Here is an example:

     

    I have added a plugin called Tablepress, which allows you to create tables and insert them into posts using shortcodes. All works fine, but when I try to use custom CSS inside Tablepess settings, it isn’t working while using gillion theme. Here are the screenshots:

     

    I was trying to remove the border using custom CSS from the tablepress’s FAQ:

     
    <pre class=”css”>.tablepress-id-N,
    .tablepress-id-N tr,
    .tablepress-id-N tbody td,
    .tablepress-id-N thead th,
    .tablepress-id-N tfoot th {
    border: none;
    }
     

    and change the font:

     
    <pre class=”css”>.tablepress-id-N tbody td {
    font-family: Tahoma;
    font-size: 14px;
    font-weight: bold;
    color: #ff0000;
    }
     

    However, when saving nothing had changed on the website using gillion theme.

     

    What could be the problem?

    Attachments:
    You must be logged in to view attached files.

    Hi @borishar,

     

    I hope you are well today and thank you for your question.

     

    Could you please share the page URL from your site where it is not working so that I can troubleshoot it?

     

    Best regards,
    Shufflehound team

    borishar
    Participant

    Hi there,

     

    I haven’t launched it yet, just setting everything up in development mode. Is there anything else I can do to allow you to help us?

    Just try making your CSS code more specific to override other code such as below using !important

     

    .tablepress-id-N,
    .tablepress-id-N tr,
    .tablepress-id-N tbody td,
    .tablepress-id-N thead th,
    .tablepress-id-N tfoot th {
    border: none !important;
    }

    borishar
    Participant

    Didn’t help. Here is the link https://totalscam.com/hello-world/

    Solution for this topic

    The CSS code that you have shared is incorrect so just try using the below CSS code.

     

    .tablepress,
    .tablepress tr,
    .tablepress tbody td,
    .tablepress thead th,
    .tablepress tfoot th {
    border: none !important;
    }
    
    .tablepress tbody td {
    font-family: Tahoma;
    font-size: 14px;
    font-weight: bold;
    color: #ff0000;
    }

    borishar
    Participant

    Thank you!

    You are most welcome here 🙂

Viewing 8 posts - 1 through 8 (of 8 total)