Join the Soledad Facebook Users Group here
for Share, assistance, discussion, and Updates related to Soledad WordPress Theme.

If you can't create a new ticket - you can send us an email via our contact form and we will get back to you.

Okay
  Public Ticket #2266703
Adding background image to footer signup form widget
Closed

Comments

  •  1
    soulfulpalate started the conversation

    Could you please help me add an image to the footer widget signup form?

    Say I want to add the attached image, how do I do that? I also need to increase the dimensions of the signup form.

    Thank you

  •  2,699
    PenciDesign replied

    Hi,

    Please try add more this code to Customize > Custom CSS to do that:

    .footer-subscribe{
        background-image: url('YOUR_IMAGE_URL_PUT_HERE');
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
        padding: 100px 0 90px;
    }
    @media only screen and (max-width: 479px){
    .footer-subscribe{ padding: 50px 0 40px; }
    }
    

    Note Important:

    1/ You need to change YOUR_IMAGE_URL_PUT_HERE on the above code to your background image URL.

    You can check this guide to know how to get URL of images upload WordPress.

    2/ You can change values 100 and 90 on the above code to increase the dimensions of the signup form for desktop and change values 50 and 40 to change the dimensions of the signup form for mobile.


    Best Regards,

    PenciDesign