Customizing About page and other pages

This seems to work as a workaround: This still needs some refinement:

section.about:after {
  content: "additional text on the about page right under the site description";
}

This seems to work, but I am sceptical because I have had bad experience with those ember identifiers as they can change and I don’t understand when and how:

#ember932 > div > div > section:nth-child(2) {
  content: "additional text on the about page right under the site description";
}

Ok, this is it (hooking it before the admins section should do the trick):

section.about.admins:before {
  content: "additional text on the about page right under the site description";
}

I just hope section.about.admins is not used anywhere else…

2 Likes