Forum
List Manager Support
List Manager supportForums
No se permite escribir sin estar logado. Por favor, login
How to hide Field Names in Cards 12.12.2013 21:55
I have a Form Layout of 3 Fields configured to display Front View in Cards. Each card shows Field Names in first column and table data in second column. I would like to hide the Field Names resulting in one column of table data starting at left.
Is there a way to hide the Field Names column?
Is there a way to hide the Field Names column?
Re: How to hide Field Names in Cards 13.12.2013 10:02
Hello,
You could hide left column on card list type using CSS. Add this to JOOMLA/modules/mod_listmanager/assets/css/default2.css (default css for List Manager) or any other css executed on this page, for example, your template css:
.lm_bootstrap .lmoverview .lmcardcontentblock .lmcarditem_name{
display:none;
}
Hope this helps. Regards,
Moonsoft Team
www.moonsoft.es
You could hide left column on card list type using CSS. Add this to JOOMLA/modules/mod_listmanager/assets/css/default2.css (default css for List Manager) or any other css executed on this page, for example, your template css:
.lm_bootstrap .lmoverview .lmcardcontentblock .lmcarditem_name{
display:none;
}
Hope this helps. Regards,
Moonsoft Team
www.moonsoft.es
Re: How to hide Field Names in Cards 23.12.2013 09:55
Hello,
You should use CSS to adapt content width to card, for example:
.lm_bootstrap .lmoverview .lmcardcontentblock .lmcarditem_data{
width:90%;
}
Hope this helps. Regards,
Moonsoft Team
www.moonsoft.es
You should use CSS to adapt content width to card, for example:
.lm_bootstrap .lmoverview .lmcardcontentblock .lmcarditem_data{
width:90%;
}
Hope this helps. Regards,
Moonsoft Team
www.moonsoft.es