Hi,
is there a way to change the text in page header? Instead of showing breadcrumbs and page title, I would like to show a different static text on each page. The text should be aligned to right side of the header.
Many thanks.
Hey gorkas!
No, but you can choose not to display that page header from the layout options on the right of the page (where you choose sidebar layout). Then add in your own header to the layout as needed.
Regards,
Devin
OK. I used the color section to make my own header. The only problem I have is that it’s about 50% higher than the standard page heading.
Is there any way to control the height of the color section?
Also, is there a way to put a widget in the color section? So that I don’t have to make changes to all the pages that have the same heading, when I decide to change the text there.
Thanks.
Hi!
Can you post the link to your website?
You can add Color Section element under Layout Elements and then add Widget Area element under Content Elements to your pages
Regards,
Yigit
Hi.
I now understand about the widgets, thanks.
The example of header is http://test.kagor.hr/poslovni-plan-investicijska-studija-studija-isplativosti/
and the example of using color section is http://test.kagor.hr/oblik-poslovnog-plana/
The question remains how to make the color section of the same height as the header.
Thanks.
Hey!
Add this code to the Quick CSS:
#av_section_1 {
min-height: 0 !important;
height: 120px;
}
Change 120px for the desired height.
Cheers!
Josue
Thanks, it works. Now, how do I vertically align the text in this section?
I meant how do I vertically center this text?
Hi!
Please add this on your custom.css or Quick CSS:
#av_section_1 h2 {
margin-top: 15px;
}
Regards,
Ismael
Thank you, all good.