Ok, tried the example that was given in customCCs basics but I'm messing up. I'm looking to change my fonts globally to Comic Neue (goggle fonts) and i would like to change the color of the basic fonts to indigo (4B0082) If someone could give me a script or whatever you call it) i would really appreciate it.
Also is this a particular programming language? if so how can i lean the basics? any links, videos or resources would be greatly appreciated. I would really like to learn this.
thanks in advance
It looks like you're new here. If you want to get involved, click one of these buttons!
Comments
You would be looking to learn CSS. Allow me to not-so-subtly plug my testbed site which includes some of the CSS fundamentals as well a bunch of examples of CSS code that works for Obsidian Portal:
https://abersade-testbed.obsidianportal.com/wikis/css-help-main-hub
To go further in depth, I highly recommend W3schools: https://www.w3schools.com/css/
GM of Rise of the Durnskald: Wrath of the Fallen Goddess - February 2016 CotM
GM of Core: The Ashes of Alcarna - April 2020 CotM
GM of Stream of Kairos
Need CSS Help? It may be covered here: Abersade's CSS Hub
Strictly speaking CSS is not a programming language. Some would argue that this is because it can't do most of the things that a programming language can do. I would argue that it's not a programming language because programming languages (C++ excluded) aren't usually created by demons looking to torture developers.
Jokes aside: while it's not a programming language that doesn't mean that it's particularly easy to learn or intuitive. If you really want to get comfortable with CSS be ready to do quite a lot of head scratching while you puzzle out why something doesn't work right away. That said, CSS can be quite rewarding and really helps sites on OP look amazing.
GM of Rise of the Durnskald: Wrath of the Fallen Goddess - February 2016 CotM
GM of Core: The Ashes of Alcarna - April 2020 CotM
GM of Stream of Kairos
Need CSS Help? It may be covered here: Abersade's CSS Hub
For the CSS code you need to specifically do what you are asking, start with the code below. This should cover most of your request, though I'm unsure of what you consider to be 'basic fonts' so something may not have been covered.
#content {font-family: "Comic Neue";}
.wiki-page {color: #4B0082;}
GM of Rise of the Durnskald: Wrath of the Fallen Goddess - February 2016 CotM
GM of Core: The Ashes of Alcarna - April 2020 CotM
GM of Stream of Kairos
Need CSS Help? It may be covered here: Abersade's CSS Hub