Does free sparkling theme allow for additional CSS?

Hello, i have been trying to add additional css for my website, but it does not work what could the problem be? Am using a free version this is my website https://imsustar.com

i want my featured images to align left and am using this code snippet https://colorlibsupport.com/t/how-to-change-blog-pist-layout/

Hey there,

I hope you are well today and thank you for your question.

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Additional CSS

/*move post to left*/
.home .single-featured {
  float: left;
  max-width: 355px;
  width: 100%;
  margin: 15px;
}


Best regards,
Support.

Hello moderator, this works like a charm, right now my images and text have different top margins, i want them to start at the same margin, how do i archieve that? i want my current image start margin to remain the same, and the text to move up to that margin.

https://imsustar.com
Regards.

Please use below custom CSS code to achieve this.


.blog #page .post-inner-content {
    padding: 20px 50px 45px;
}

Thanks Movin.

You are most welcome here :slight_smile: