efemkay
February 17, 2022, 3:47pm
2
you’ll need to do some homework for you to play around with css. do explore links below. i’ll give you a snippet to help u get started for that rounded rectangle headings
h1, h2, h3 {
border: 1px solid white;
border-radius: 5px;
padding: 5px;
}
While using Obsidian, if you press CTRL-SHIFT-I (option-cmd-i for mac) then it will bring up the developer window. In the developer window, at the top left is an icon with a pointer in a box. This allows you to select elements on the screen and see how to refer to them and what styles. I will occasionally update this post with more pictures of how to do stuff.
[Developer Tool]
You can hover over items to see what they do and then click on an item to select it. Then go down to the styles secti…
1 Like