• How to remove background color table cell? I tried al kinds of css but no luck.

    Changing the css in the developer windows works fine but not in a style.css

Viewing 6 replies - 1 through 6 (of 6 total)
  • You might need to add an !important at the end of your CSS rules if it’s going into your style.css
    If the shortcodes ultimate stylesheet is loading after your style.css, it can override whatever custom styling you’ve added.
    Adding your styling to the shortcodes ultimate Settings > Custom CSS should allow it to re-style as intended, but I have 8 instances in my plugin settings custom CSS where I still had to use !important.

    Thread Starter knireis

    (@knireis)

    I did, but the styling which comes with the plugin has the !important already is use.

    Which specific shortcode/element/class are you trying to restyle?

    Thread Starter knireis

    (@knireis)

    the table function, i want to change the background color and borders

    I was able to change them using the SU Settings > Custom CSS area using this (beware, it’s ugly):

    .su-table td {
    	padding: 1em 2em !important;
    	border: 1px solid #666 !important;
    	background: #97cfd4 !important;
    }
    .su-table .su-even td {
    	background: #d0d0d0 !important;
    }

    The Custom CSS area overrides the SU default styling because it always loads it after, even if it’s denoted as !important.

    Thread Starter knireis

    (@knireis)

    Thanks, didn’t think about that!

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘remove background color table cell’ is closed to new replies.