Splash theme uses a different class, it doesn’t use .entry-content. That’s why it’s not working. Try this:
.hentry .wp-caption{ border: 0 !important; }
If that still doesn’t work, share a link to a post where we can see image with border. It’ll be easier to correctly identify CSS classes and/or IDs to disable border.
^V
Thread Starter
kefalo
(@kefalo)
Thanks Army,
that worked fine.
the splash is killing me with the bugs, I now have an issue of aligning tables
the exact same code that works for one table doesn’t work for another:
——–
.tablepress-id-28 .column-2,
.tablepress-id-28 .column-3 {
text-align: center;
vertical-align: middle;
}
.tablepress-id-28 .column-3 {
font-size: 16px;
}
.tablepress-id-28 tr {
height: 60px;
————-
The only thing that changes is the height. I also have no idea how to shrink the sidebar (too wide)…
Tablepress inserts its own stylesheet, so now you have conflicting CSS from Splash theme and Tablepress. You can try disabling stylesheet that Tablepress plugin inserts. You can do so by including this line inside your functions.php file:
add_filter( 'tablepress_use_default_css', '__return_false' );
Test it, and see how the tables look with Splash’s CSS. If you don’t like it, remove the line to enable Tablepress CSS again.
Keep in mind, the height and width of the table and cells inside it can change based on the contents inside it.
^V
-
This reply was modified 9 years, 2 months ago by
ProjectArmy.