Tirual so if i want to edit buttons on profile page ill do .profile .button—link
There is a <div class="UserPage">
inside <main class="App-content">
which allows to address all .button--link
elements inside it, e.g. the Like
and Reply
buttons below the user's posts:
CSS: .UserPage .button--link {...}
The links in the header bar, however, are not inside <div class="UserPage">
, so they can't be targeted that way. And if you try to have different rules for different tags, you're out of luck as well. The types of pages you can address are:
.IndexPage
, .DiscussionPage
, .UserPage
, and in the case of the pages extension .Pages-page
.