2

如何在 Liferay 中隐藏 portlet 图标和标题但保留编辑控件?

这些样式的大多数组合都没有帮助:

.portlet-borderless-bar {
    display:none;
}

.portlet-topper {
    display: none
}

.portlet-title {
    display: none;
}

他们要么删除所有内容,要么保留所有内容。

4

2 回答 2

2

使用 Liferay 6.2,

只需单击左侧的设置图标,然后从下拉列表中选择外观。然后在 Portlet Configuration 下,为 Show Borders 选择 No。

于 2016-02-16T14:22:23.580 回答
1

尝试这个:

.portlet-title-text, .portlet-title .icon {
        display: none;
}
.portlet-title {
        height: 15px;
}
于 2013-04-26T14:27:53.730 回答