Help for 2 small tweaks to Massively Theme

Hello,

I’ve been trying to figure this out for hours to no avail. I’m wondering if anyone can point me in the right direction to make two small tweaks to the massively theme?

  1. On the home page, I want to show the post tag next to the date - how can I achieve that?
  2. On the post page, I want header image to bleed to the border, any idea how?

My website is theblocktopian.com and the github for the theme code is here (GitHub - the-blocktopian/massively-mod-7) although it would be ideal to do this via code injection if possible.

Thank you so much for your help!

Best,
Piroune

1 Like

For “header image to bleed to the border”…

<style>

#main>.post {
    padding: 0;
}

div.kg-header-card.kg-size-small {
    padding: 0;
    min-height: 0;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
}
</style>

[quote=“denvergeeks, post:2, topic:30694”]

Thanks for this! I was able to fix using the following:

.image.main img{
    margin-top: 0rem;
    margin-bottom: 0rem;
    margin-left: -8rem;
    margin-right: -8rem;
    width: calc(100% + 16rem);
    display: flex;
    max-width: fit-content;
}

</style>

 @media screen and (max-width: 1280px){
    .image.main img{
            margin-left: -4rem;
            margin-right: -4rem;
            width: calc(100% + 8rem);
}
 @media screen and (max-width: 740px){
         .image.main img {
            margin-left: -2rem;
            margin-right: -2rem;
            width: calc(100% + 4rem);