Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1004472

    I’m using TablePress instead of Enfold’s table feature. Can anyone tell me how to clear ALL of Enfold’s default table styling so the TablePress styles will work correctly?

    #1004495

    Hey DJQuad,
    To clear all of Enfold’s css for tables, please go to: \enfold\css\base.css and comment out lines 272 – 324
    It starts like this:

    /* #Table
    ================================================== */
    table {
    	width: 100%;
    	padding: 0;
    	margin: 0 0 20px 0;
    	font-size: 13px;
    }

    to comment out css add a /* at the start, and a */ at the end, like this:

    
    /*
    table {
    	width: 100%;
    	padding: 0;
    	margin: 0 0 20px 0;
    	font-size: 13px;
    }
    */

    Best regards,
    Mike

    #1004688

    Can it be done another way in Quick CSS?

    #1004723

    Hi,
    not really for what you are trying to do, which is remove Enfold’s styling so a plugin can apply it’s styling.
    You might be able to put this at the top of the WordPress > Customize > Additional CSS field:

    .main_color table,.main_color tbody,.main_color tr,.main_color th  {
        all: initial !important; 
    }

    and then copy the stylesheet from the plugin and add it below the code above.
    But my first answer is a better solution.

    Best regards,
    Mike

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.