when the preview page is displayed the “master/detail” & “client notes” / “client documents” / “client contacts” buttons appear and then disappear, at one point they will all be hidden, when you re-open the details page, the cycle starts again.I have css code that was suppose to hide these buttons
I have css code that was suppose to hide these buttons
Where did you put it? You might put it at a wrong location so your CSS styles are removed and then added when you open a new preview row. Post your code and explain how you hide them for discussion.You better put it under HTML → Styles → User.
looks like I misspoke, I don’t believe the css code has any effectI removed everything from the CSS section and the previews still display the button, then when you click another tab and go back the button is removedas for script code, there’s nothing on any of the forms to note:in global startup, nothing to note as well, except for:
i think i need to create a test project again and see the effects.
i’m not even sure what the method to remove them from the preview form would be now…
You should not use such general selectors which affect all other elements with the same CSS classes outside the preview row. You better use CSS Descendant combinator, e.g. if you only want to style HTML elements inside the preview row, you better use “.ew-table-preview-row .my-class”.Also read Inspect HTML element and add your own CSS styles.