構造的に表示 平面上に表示 ツリー上に表示
スレッド数 [ 前へ | 次へ ]
toggle
Dan Scully
Adjust the dockbar behaviour
2012/07/15 23:30
答え

Dan Scully

ランク: Junior Member

投稿数: 48

参加年月日: 2011/10/13

最近の投稿

When I'm logged in and I try to add a new portlet I usually click:
"Add" -> "More" and simply select my portlet.

The problem is that when the popup with the list of available portlets shows up the existing portlets get moved to the right, which is unacceptable in my theme.

I think it's a matter of some JavaScript script that handles the popup. How do I disable moving the portlets then?
Mazhar Alam
RE: Adjust the dockbar behaviour
2012/07/15 23:46
答え

Mazhar Alam

ランク: Regular Member

投稿数: 179

参加年月日: 2011/11/25

最近の投稿

Hi,
The shifting of portlets are just normal as the "add" dropdown takes some space.
Jignesh Vachhani
RE: Adjust the dockbar behaviour
2012/07/15 23:52
答え

Jignesh Vachhani

ランク: Liferay Master

投稿数: 755

参加年月日: 2008/03/10

最近の投稿

Hi Dan,
You can use below CSS class in your theme :

.lfr-has-sidebar #main-content {
padding-left: 0px;
}
Dan Scully
RE: Adjust the dockbar behaviour
2012/07/16 0:20
答え

Dan Scully

ランク: Junior Member

投稿数: 48

参加年月日: 2011/10/13

最近の投稿

@Jignesh Vachhani

Thanks a lot ;-) No more moving/shifting ;-)

Btw. it's in the dockbar.css file ;-)
Jignesh Vachhani
RE: Adjust the dockbar behaviour
2012/07/16 0:06
答え

Jignesh Vachhani

ランク: Liferay Master

投稿数: 755

参加年月日: 2008/03/10

最近の投稿

You can also set below CSS using Manage pages section:

1) Go to Manage Pages >> CSS section
And put below CSS in CSS box which have been provided at bottom:
.lfr-has-sidebar #main-content {
padding-left: 0 !important;
}