customize the page of each blog #7733
Unanswered
rafaelrdealmeida
asked this question in
Q&A
Replies: 1 comment 4 replies
-
|
You can use CSS using the classes added to the HTML elements: html.plugin-blog.plugin-id-cadernos {
color: red;
}
html.plugin-blog.plugin-id-fourth-blog {
color: blue;
}You can also swizzle components components and do conditional JSX const {plugin} = useRouteContext();
if (plugin.id === "cadernos") {
return <X/>
}
else {
return <Y/>;
}Note:
|
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello we are using multiple blogs. How could we customize the page of each blog?
for example, we have the two blogs below and we would like to customize their pages
best
Beta Was this translation helpful? Give feedback.
All reactions