Decrease the height of the header of a WordPress theme

0

I have tried to decrease the height of the header of this website: ishameetings.cl without success.

In addition, the WordPress template that I am personalized with is Albar.

Any suggestions are grateful.

    
asked by 10.03.2017 в 18:49
source

2 answers

1

You must first decrease the internal containers divs inside because the internal ones prevent the external one from reduscating

    
answered by 23.03.2017 в 04:37
0

In the template Albar you must modify the id wporg-header

#wporg-header {
    height: 120px;
    text-align: inherit;
}

for example:

#wporg-header {
    height: 180px;  // <-
    text-align: inherit;
}
    
answered by 24.03.2017 в 07:59