Hi guys,
I need one more help with my CSS.
I have a table thats need position flex because this is a horizontal table, but I have a problem, I need to align it on left side, fixed. Anything that I am trying is working how I need.
Attached I'm sending images whith result of check and unchecked. How to be flex aligned on left, please?
Link of this screen:
https://personal-h6lmzlzo.outsystemscloud.com/Zlate/TaskBoard?ProjectId=40
Hello @Elaine Guimaraes
As i understood your requirements below CSS can help you.
#fixedContainer { position: fixed; width: 600px; height: 200px; left: 50%; top: 0%; margin-left: -300px; /*half the width*/ }
Indeed you can make changes as per your need.
here is the example
I hope it'll help you.
ThanksDeep
Hi Deepsagar, thanks for your help.
I have a question, please, with the "position: fixed; " I will disabled my horizontal table that needs "position:flex", no?
I'm looking for a way that I can continuows using my horizontal table (Sections of tasks)
Might be this can help you -
Make Table Horizontally Scrollable for Small Screen size
I tryed some ways with your suggestion, It works with only "position: fixed;"
Thank you!!
The issue is due to CSS getting applied there via script.I did some tests and remove the CSS applied below the root element it was inline CSS and applied it through the Script tag.
You can test the same -
Js Snipet :
var Elem = document.getElementById('SectionList').firstChild; Elem.remove();
I hope this helpsThanks
I wil try this! Thank you Tousif!!
Tousif,
I tryed below the root and not work, sorry, my knowlege of css is micro.
Where I need to put it, please? I need to create a JS (if do I, where I need to create and call, please)?
Hi @Elaine GuimaraesThat is JavaScript code which you are using in CSS editor, that's why its's throwing error.
Thanks.