[Feature] Add text alignment and margin offset for on-screen captions #617
Claudinetto2
started this conversation in
Feature request
Replies: 3 comments
|
This is already possible if you know CSS (using the custom css option). |
0 replies
|
I've add in config.yaml and then in css file /* Centra tutti gli elementi di didascalia */ but remain on the left do you have any suggestions? |
0 replies
|
probably something like this: .asset--metadata {
align-items: center !important;
width: 100% !important;
max-width: none !important;
}
.asset--metadata--icon {
order: unset !important;
}Though this wont work well if you have |
0 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.
I have searched the existing feature requests to make sure this is not a duplicate request.
The feature
would like configuration options for precise horizontal positioning of text overlays on images (date, time, person's name, owner, etc.).
Part 1: Basic Alignment
A primary setting (e.g.,
text_alignment) with values:left,center,right.Part 2: Fine-Tuning with Offset (New Suggestion)
For advanced control, an additional setting (e.g.,
text_offsetorcaption_margin) would be excellent. It could work in two logical ways:text_offset: "20px"), applied according to the chosen alignment.text_offset: "5%"), giving consistent relative positioning across different screen resolutions.All reactions