Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Do you have a section in the dashboard named, “Jetpack”, “Custom CSS”, or “Custom Styles”?
I don’t see it. Under Appearance -> Editor there are the following
RTL Stylesheet (rtl.css)
Stylesheet (style.css)
Visual Editor RTL Stylesheet (editor-style-rtl.css)
Visual Editor Stylesheet (editor-style.css)
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
We recommend you don’t change the theme’s files because your changes will only be lost when the theme updates.
You can use a Custom CSS Manager plugin to hold your CSS modifications (CSS is what you need to modify here).
In the Custom CSS Manager’s section of the dashboard, enter this;
.singular .entry-header,
.singular #content {
margin-left: 0;
}
Thanks so much. How about the content as well as the header?
As you can tell from the site (lindseyinservice.com) I’m “helping” my cousin set up a site to assist her in raising money for mission trips.
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Which content on your webpage are you referring to?
Just beneath the header. For example, http://lindseyinservice.com/?page_id=2
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Try amending the code to this;
.singular .entry-header,
.singular .entry-content,
.singular #content,
blockquote {
margin-left: 0;
}
That works. Thanks! I sincerely appreciate your support.