Site logo

Archived topic

Layout Design Like SiteLibrary (Charge)

14 replies · Started by Sanu Kumar on October 5, 2020

Viewing posts 1–15 of 15

Yes you can definitely replicate this.

Can you link us to the site you're trying to apply this?

Thank you.

Can you specify which part of the site do you want this applied?

If its on the "Most recommended posts", you can try this CSS code:

article.elementor-post.elementor-grid-item {
    background-color: rgba(0,0,0,0.02);
    transform: scale(1);
    box-shadow: 0px 0px 0px 1px rgba(214,218,222,1);
    transition: all 0.1s ease-in;
}

article.elementor-post.elementor-grid-item:hover {
    transform: scale(1.01);
    box-shadow: 0px 10px 30px 0px rgba(0,0,0,0.3);
}

Try this out.

.uagb-block-4849a8de .uagb-post__items article {
    background-color: rgba(0,0,0,0.02);
    transform: scale(1);
    box-shadow: 0px 0px 0px 1px rgba(214,218,222,1);
    transition: all 0.1s ease-in;
}

.uagb-block-4849a8de .uagb-post__items article:hover {
    transform: scale(1.01);
    box-shadow: 0px 10px 30px 0px rgba(0,0,0,0.3);
}

Hey Sanu,

Can you check with the plugin support (Elementor and UAGB) if Elvin's code above doesn't work?

Please be mindful that the questions here should be directly related to the GeneratePress theme or GP Premium plugin:
https://www.screencast.com/t/W7vOHMRsn

We appreciate your understanding :)

The content from that page is all coming from Elementor.

Am I missing something?

ohh again sorry, it was the homepage....🙏

Here it is: https://www.masteryblogging.com/blogging/

This link is only of Blogging category,,,I want in all category pages (don't know archive page and category both are same)

Hi,

You can try this out.

.generate-columns-container > article > .inside-article {
    background-color: rgba(0,0,0,0.02);
    transform: scale(1);
    box-shadow: 0px 0px 0px 1px rgba(214,218,222,1);
    transition: all 0.1s ease-in;
}

.generate-columns-container > article:hover > .inside-article:hover {
    transform: scale(1.01);
    box-shadow: 0px 10px 30px 0px rgba(0,0,0,0.3);
}

thanks, Elvin

It worked but the only thing I need is could you help me to fix the text, means the text is touching the border so I need to give padding left and right.. how to make this

You can try this CSS.

.generate-columns-container > article > .inside-article > .entry-header, .entry-summary, .entry-meta {
    padding-left: 20px;
    padding-right: 20px;
}

Just change the px value to your preference.

it helped.

Nice one. Feel free to open a new topic if you have any other concerns.

Cheers. :D

This archived topic is closed to new replies.