-
DescriptionI am trying to align all the texts of a particular page to left. I can't align all texts to left. Here is the page: https://ritog.github.io/cv.html. The source can be found here. My knowledge of CSS is limited, and I could not do it with anything like: <div style="text-align: left;">
foo content
</div>
<p style="text-align: left;">
bar content
</div> I also tried basic HTML and CSS. But nothing works. Can you please tell me how do I do it? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
That's beyond Quarto support. Now, one way to solve the issue is to use your favourite browser inspect/developer mode, find the target, create a rule, add that rule to your document/page with the I also suggest you read the documentation about authoring with Quarto, especially the part about using "raw content" and the "divs and spans": Screen.Recording.2024-08-22.at.15.31.17.mov |
Beta Was this translation helpful? Give feedback.
That's beyond Quarto support.
If you want to customise your HTML, you need to learn (S)CSS, there are no way around that.
Now, one way to solve the issue is to use your favourite browser inspect/developer mode, find the target, create a rule, add that rule to your document/page with the
css
YAML key in your YAML frontmatter (see documentation).I also suggest you read the documentation about authoring with Quarto, especially the part about using "raw content" and the "divs and spans":
Screen.Recording.2024-08-22.at.15.31.17.mov