Forum
List Manager Support
List Manager supportForums
No se permite escribir sin estar logado. Por favor, login
List Manager Column Width? Wrapper Width? 11.03.2015 21:43
Hi, I've installed List Manager and it is setup and working. However, the wrapper or frame its in spills over to the right too far. I've tried looking at different css files but none of them seem to have any effect when I make edits.
I'm trying to reduce the width of the columns so it fits better on the page, or decrease the size of the wrapper its in.
Edited by jgagnon@mansfieldpaper.co - 11.03.2015 21:44
I'm trying to reduce the width of the columns so it fits better on the page, or decrease the size of the wrapper its in.
Edited by jgagnon@mansfieldpaper.co - 11.03.2015 21:44
Re: List Manager Column Width? Wrapper Width? 12.03.2015 09:44
Hi,
at listmanager css there are no margins or paddings configured for the container, and the container is just set to width="100%", you will find
#lm_wrapper {}
style at mod_listmanager/assets/css/lmbootstrap-default.css
You can add
#lm_wrapper {width: 400px !important;}
for ex to override any external styles.
Also that space can be caused by any style inherited from your template,so you can search if you have at your template any property regarding divs with class 'container' or 'moduletable' and try to adjust there.
About columns style, you have available one specific class per column to set new properties if needed. You can add to the css the classes
.lm_column_1{
}
.lm_column_2{
}
...to set the width or any other style.
Hope this helps, regards
Moonsoft Team
www.moonsoft.es
at listmanager css there are no margins or paddings configured for the container, and the container is just set to width="100%", you will find
#lm_wrapper {}
style at mod_listmanager/assets/css/lmbootstrap-default.css
You can add
#lm_wrapper {width: 400px !important;}
for ex to override any external styles.
Also that space can be caused by any style inherited from your template,so you can search if you have at your template any property regarding divs with class 'container' or 'moduletable' and try to adjust there.
About columns style, you have available one specific class per column to set new properties if needed. You can add to the css the classes
.lm_column_1{
}
.lm_column_2{
}
...to set the width or any other style.
Hope this helps, regards
Moonsoft Team
www.moonsoft.es