eddiesigner / liebling

Beautiful and clean Ghost theme that is easy and comfortable to use. To get the latest version please head over the releases page 👉🏼
https://github.com/eddiesigner/liebling/releases
MIT License
1.27k stars 602 forks source link

Changing hyperlink colors #379

Closed trvic3 closed 3 years ago

trvic3 commented 3 years ago

Hello 👋

Is it possible to change the default hyperlink color by injecting code and put a standard color of let's say green for all the hyperlinks ?

Thank you in advance for your time and have a great day.

eddiesigner commented 3 years ago

Hi,

What links do you mean? Links in post content? or absolutely ALL the links everywhere? I wouldn’t recommend to do the second since there are multiple types of links (nav links, buttons, tags, post cards, etc.) and no all of them would look good.

trvic3 commented 3 years ago

Hello, In post content mostly yes :). Thank you

eddiesigner commented 3 years ago

You can inject the following style:

<style>
.l-post-content a {
    color: green; /* You can use your desired color here */
}
</style>
trvic3 commented 3 years ago

Thank you! Works perfectly!