Skip Navigation

[Resolved] edit-post-link from within a view not much control over layout

This support ticket is created 2 years, 10 months ago. There's a good chance that you are reading advice that it now obsolete.

This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.

Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.

Sun Mon Tue Wed Thu Fri Sat
- 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 -
- 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 -

Supporter timezone: Asia/Karachi (GMT+05:00)

This topic contains 3 replies, has 2 voices.

Last updated by garyP-5 2 years, 9 months ago.

Assisted by: Waqar.

Author
Posts
#2332627

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?

#2333357

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

#2334327

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.

#2334375

My issue is resolved now. Thank you!