Home Forums Jevelin Theme Package image gets cut off on mobile Reply To: Package image gets cut off on mobile

Home Forums Jevelin Theme Package image gets cut off on mobile Reply To: Package image gets cut off on mobile

Hi @shanticfm,

 

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

 

You can either always display full image by adding the following CSS code in the Custom CSS code option of your theme on the below path.

 

Admin Area -> Appearance -> Theme Settings -> Custom Code -> CSS Code

 

.sh-pricing-top {
    background-size: contain !important;
    background-repeat: no-repeat;
}

 

Or you can change its position using following custom CSS code instead of above.

 

.sh-pricing-top {
   background-position: 80% 50% !important;
}

 

Best regards,
Shufflehound team