-
I am using a custom css file based on the default style successfully, but I am not able to right align header content. In several slides I have to hide the header for avoiding collision with the title, but it would better for me just moving the header content to the right. I have tried the following styles without success: header {
text-align: right;
justify-content: right;
} Any idea about how to achieve it? Thanks! |
Beta Was this translation helpful? Give feedback.
Answered by
yhatt
Nov 26, 2020
Replies: 2 comments 1 reply
-
For default theme: header {
left: auto;
right: 30px;
} or header {
right: 30px;
text-align: right;
} |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
yhatt
This comment was marked as off-topic.
This comment was marked as off-topic.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
For default theme:
or