How to add copyright label in the footer of an integrated portal

How can i add © 2019 Company in the footer without making it a link. This is for the new version of integrated portal.

Solved Solved
0 3 212
1 ACCEPTED SOLUTION

Try this custom style:

.nav-footer mat-toolbar:after {
  background-color: orange;
  content:'© Apigee 2019'; 
  display: block;
  visibility: visible;
}

This is kind of an abuse of CSS, but it works 🙂

View solution in original post

3 REPLIES 3

Try this custom style:

.nav-footer mat-toolbar:after {
  background-color: orange;
  content:'© Apigee 2019'; 
  display: block;
  visibility: visible;
}

This is kind of an abuse of CSS, but it works 🙂

Not applicable

We are always beside you to empower you with all kinds of online assignment writing service UK no matter which your area of specialization is. online coursework writing service has writers from every academic discipline. Some of the subjects for which you can get online research paper writing service from us include English, Philosophy, History, Chemistry, Nursing, Law, Pharmacology, Mathematics, Physics, etc. If you want further information regarding online term paper writing service, kindly get in touch with our customer support team.

i like your approach it gave me more ideas around adding content.

for the footer copyright notice i ended up using the css below as i wanted the copyright notice to be together with the rest of the footer menu items

.nav-footer .mat-toolbar .menu-item:nth-last-child(2) {
  pointer-events: none;
  cursor: default;
}