Styles at posts and pages #568
-
Is it possible to add custom styles in some line at markdown inside posts or pages ? |
Beta Was this translation helpful? Give feedback.
Replies: 5 comments 1 reply
-
Could you please explain it in detail? |
Beta Was this translation helpful? Give feedback.
-
You can put your CSS into |
Beta Was this translation helpful? Give feedback.
-
I am trying to center text for some links mylink |
Beta Was this translation helpful? Give feedback.
-
Btw, I recommend using Bootstrap utilities CSS instead of inline style, in this case, you can define something like following: <div class="text-center">
{{ .Inner }}
</div>
If you prefer using Markdown inside a shortcode, you'll need to process the Markdown: {{< shortcodename >}}
[My Site](https://example.com)
{{</ shortcodename >}} {{ .Inner | markdownify }} |
Beta Was this translation helpful? Give feedback.
-
Thanks for the info, I totally forgot |
Beta Was this translation helpful? Give feedback.
Btw, I recommend using Bootstrap utilities CSS instead of inline style, in this case, you can define something like following:
If you prefer using Markdown inside a shortcode, you'll need to process the Markdown: