How can I make the header a little larger, I think now it’s about 90px, and the row beneath it (that displays the name of a page and breadcrumbs) a little smaller?
Hi,
You can edit css > layout.css, find this code
/*default header: main logo and main menu height. increase max value if you want to use a bigger logo*/
#header_main .container, .main_menu ul:first-child > li a{ height:88px; line-height: 88px; }
Something like this:
/*default header: main logo and main menu height. increase max value if you want to use a bigger logo*/
#header_main .container, .main_menu ul:first-child > li a{ height:120px; line-height: 120px; }
To make the title container smaller, add this on your custom.css or Quick CSS
#top .title_container .container {
padding: 0 0;
min-height: 0;
}
Regards,
Ismael