This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style> | |
.gh-article-image img { | |
max-height: 90vh; | |
object-fit: contain; | |
} | |
</style> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style> | |
.post-feed .featured {order: -1;} | |
</style> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Thanks to Ghost user Akshay (https://akshaykhot.com/) for this code snippet. --> | |
<script type="text/javascript"> | |
document.addEventListener("DOMContentLoaded", ready); | |
function ready() { | |
let member_btn = document.querySelector(".gh-subscribe-btn"); | |
if(member_btn) { | |
let subscribe_modal = document.querySelector(".gh-subscribe"); | |
subscribe_modal.remove(); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
const changeme = document.querySelector('.gh-copyright') | |
changeme.textContent = "What it should actually say © 2022"; | |
</script> |