Hello, I would like to change the right margin of the css but I can't find the right section in the css, can someone help me? thank you
Change margin right css
Collapse
X
-
Change margin right css
Hello, I would like to change the right margin of the css but I can't find the right section in the css, can someone help me? thank you
1 PhotoTags: None -
Hello, have you added any custom css because in the default behaviour it must not has right margin,
The list view has max width so in the large screens you will see it has right and left margins at the same time,
I can give you custom css code to change the max width but first must ensure that it is the problem -
hi, I added my css in client \ custom \ css \ espo-vertical.css indicating it in the custom file \ Espo \ custom \ Resources \ metadata \ app \ client.json and I'm customizing this file, currently I have only added the border- bottom in the navbar tab no other changesComment
-
In the case you want the list table to take the full width in large screens you can use this code:
PHP Code:@media screen and (min-width: 768px){ body > #content { max-width: 3800px; } }
Comment
-
I added,
PHP Code:.container>#main { margin-right:-200px; }
Comment
-
Comment
-
Comment
-
I updated the css code to this:
PHP Code:@media screen and (min-width: 768px){ body > #content , body.minimized #content{ max-width: 3800px; } }
Comment
-
I modified the code as you posted and in addition I also had to modify
From
Code:body.minimized #content { padding-left:53px; max-width:1538px }
Code:body.minimized #content { padding-left:53px; max-width:3800px }
Comment
-
Comment
Comment