rapt
rapt

Reputation: 12230

Primefaces AccordionPanel - how to expand space between tabs?

How could I expand the space between the tabs of a Primefaces AccordionPanel ?

Upvotes: 1

Views: 3206

Answers (1)

BalusC
BalusC

Reputation: 1108722

According to my Chrome web developer toolset,

enter image description here

you just have to change the margin-top of the .ui-accordion .ui-accordion-header.

E.g., to 20px:

.ui-accordion .ui-accordion-header {
    margin-top: 20px;
}

See also:

Upvotes: 3

Related Questions