-
Notifications
You must be signed in to change notification settings - Fork 264
Customizing the Header section
Guilherme Borges Bastos edited this page Jun 3, 2020
·
12 revisions
< Applying Customizations page
This Wiki page will lead you through the customization of the Header component. In case of issues, feel free to enter in our community on .
The entire code that belongs to the Header can be found at see on GitHub:
/src/app/header
The Header component files are based on the schema below:
File | Description |
---|---|
header.component.html | Contains the view template |
header.component.scss | Contains the styles |
header.component.responsivity.scss | Contains the responsive styles |
header.component.ts | Contains the component's logic |
Currently, the logo GBASTOS is a text element that can be updated at header.component.html:8
:
<div class="child logo-container" itemprop="brand" itemscope itemtype="https://schema.org/Brand">
<a (click)="resetMenu()" href="#" class="logo" itemprop="name" itemprop="logo">gbastos</a>
</div>
- Home
- Mobile Friendliness
- Getting Started
- Applying Customizations