Hey all,
have a question:
How can i make a round corner on all images in Source Theme?
Big thanks!
Best, dake
Hey all,
have a question:
How can i make a round corner on all images in Source Theme?
Big thanks!
Best, dake
Depends, if all images anywhere then I assume this works:
<script>
img {
border-radius: 90px;
}
</script>
Then adapt pixels as needed to achieve the roundness wanted.
Hey,
thanks!
Do i need add this in Head code injection?
Because when i add it i can’t see any changes.
Thanks.
Best, Dake
There’s an error in this
There’s an error here. It should be <style>
not script… (and the same for the closing tag.)
That’s what I get for typing fast on a phone.
Hey, Big Thanks!
Its works.
By the way: do you known how i can add a border for the tags under the image in source theme?
like in this theme:
And it is possible to remove: Powered by Ghost, Floted Subscribe Button on the bottom right corner?
Thanks
Best, dake
Do you mean like the huge “Business” tag header?
Subscribe you just turn off in portal settings I swore.
Powered by ghost is just display:none
<style>
.gh-footer-copyright{display:none;}
</style>
Hey, thanks!
I mean the tag under each post image like “lifestyle” “fashion” “Idea” this have a border in pill style.
I’m gonna bump this question from Dake. Be nice to know too.
Like he has now? If So then should only need
<style>
.post .entry-category a {
font-weight: 500;
position: relative;
font-size: 12px;
letter-spacing: 0.01em;
margin-right: 5px;
text-decoration: none;
font-family: var(--heading-font);
padding: 0px 15px;
border-radius: 30px;
text-transform: uppercase;
}
.entry-category > a:hover {
background: var(--theme-color) !important;
color: var(--color-white);
}
</style>