Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
If you’re not using a Child Theme, and if the theme doesn’t have a section for CSS modifications then do the following:
- Install this Custom CSS Manager plugin http://wordpress.org/plugins/custom-css-manager-plugin
- use its “CSS Code” section of the dashboard to hold your CSS modifications:
-
(put this code in)
table,
td {
border: 0;
}
- Save
Alternatively use your Child Theme style.css file to hold your CSS modifications
Thread Starter
lewis
(@wkrstr0075)
quick response appreciated. inserted code, and this works well, with the drawback that it knocked out the “menu” borders. can we put these back in place ?
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Can you show us a webpage with the table borders that you want to remove?
Thread Starter
lewis
(@wkrstr0075)
i removed the “border: 0” code from the child theme so you can view the original with the grey border.
however, being in maintenace mode, do you need me to take it out of that mode for you to view it ?
http://www.mystic-wicker.com/responsive/
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Thread Starter
lewis
(@wkrstr0075)
ok, maintenance mode disabled
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Try:
.entry-content td,
.entry-content table {
border: 0;
}
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
By the way, there are plugins you can use to control structure of your text. The age of the table layout is over https://wordpress.org/plugins/lightweight-grid-columns/
Thread Starter
lewis
(@wkrstr0075)
no change – you can see the “menu” is not right
meanwhile, will be reading your link
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Hmm where are you putting this CSS?
Thread Starter
lewis
(@wkrstr0075)
appearance>editor
here is a duplicate put in backticks:
/*
Theme Name: child-theme
Theme URI: http://www.mystic-wicker.com
Description: child theme for smpl skeleton
Author: lewis
Author URI:
Template: smpl-skeleton
Version: 2..1.1
*/
.entry-content td,
.entry-content table {
border: 0;
}
/* Generated by Orbisius Child Theme Creator (http://club.orbisius.com/products/wordpress-plugins/orbisius-child-theme-creator/) on Sat, 19 Mar 2016 13:45:20 +0000 */
@import url('../smpl-skeleton/style.css');
hope this helps
Thread Starter
lewis
(@wkrstr0075)
andrew, i re-enabled maintenance mode until you need it disabled again
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
What is the name of your child theme folder? I want to see if I can access it through your maintenance plugin
Thread Starter
lewis
(@wkrstr0075)
do you mean this:
Theme Name: child-theme
if something different, let me know
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
In the end, I couldn’t access that behind the maintenance screen. I can’t really commit to being online when you disable your maintenance screen, so that’s a bit of an issue.
Generally, I wouldn’t think the latest code that I suggested would cause any issues with your navigation bar.
Something else might seem to be amok here.
A tip though, always add your CSS modifications below the @import line.