Forum Discussion
- AkenefickGenius
I was trying to figure this out as well. It looks like from inspecting this is the "Post Page" which is a one column page with a component called editor added to "main-content".
Does this mean everything on the page is part of that component and can't be changed?
adriana4u Even if you can't edit this page you could hide the associated products with CSS.
.lia-form-products-entry {display: none;}
Should work. You would add it to the CSS under community style in studio.
For hiding the product associations: If you don't use product associations you can Set Product Mention and Product Association permissions either from your whole community or just the idea exchange that you want to hide it from:
As Akenefick pointed out the editor is indeed a monolithic component which layout cannot be easily changed in Studio's page editor. Using pure CSS you could re-sort everything in the right hand column by switching to a column flex layout with something like this (untested, but you get the idea):
.PostPage .lia-quilt-column-right .lia-quilt-column-alley-right { //Switch right hand column to flex colum layout display: flex; flex-direction: column; align-items: flex-start; } // Now define for each widget their position in the flex layout .PostPage .lia-form-tags-fieldset-toggle { order: 1 } .PostPage .lia-form-labels-fieldset-toggle { order: 2 } .PostPage .lia-form-cover-image-input { order: 3 } ...
Related Content
- 7 months ago
- 5 years ago
- 3 months ago