remove
#nav-single{padding:20px;}
where do I write that text?
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
If you’re not using a Child Theme, and if the theme doesn’t have a designated section of the dashboard for CSS modifications then install this Custom CSS Manager plugin http://wordpress.org/plugins/custom-css-manager-plugin
Then use its “CSS Code” section of the dashboard to hold your CSS modifications.
Alternatively use your Child Theme style.css file to hold your CSS modifications.
It’s still not clear what you’re referring to though about the “bar between the article and the comment”.
Hello CapraBianca,
If you want to remove the white bar completely, you can target the element and set it’s display property to none, or remove that block of code in your single.php file.
Here’s the CSS code:
#nav-single { display: none; }
Place that code inside your style.css file, preferably, at the bottom of the file, so you would know the codes you added. To locate the file, either edit it via FTP, or go to Dashboard > Appearance > Editor, and select your style.css file (labeled Stylesheet).