Tell us what you are trying to do?
when i use edit-post-link from within a view, and i call a content template, i don't have much control over the appearance. Like the post-title displaying even with hide title checked, and the background color. My pages have a light green background. But the content templates are white on either side of the template.
Is there any documentation that you are following?
i couldn't find docs to cover this.
Is there a similar example that we can see?
hidden link then click on edit
What is the link to your site?
Hi,
To make sure all content templates show the content with the default background color and without any white empty space, you ca include the following CSS code, at WP Admin -> Appearance -> Customize -> Additional CSS:
#inner-wrap {
background: var(--global-palette8);
}
For any content template, where the post heading/title from the theme is still showing, you can include the following CSS code in the template's "CSS editor":
( screenshot: hidden link )
.entry-content-wrap .entry-header .entry-title {
display: none;
}
regards,
Waqar
the "hide title" worked. The inner-wrap didn't work in the CSS editor under "appearance-customize". But, it did work when added it to the content template CSS editor.
My issue is resolved now. Thank you!