• Resolved lesleyturner

    (@lesleyturner)


    1. I am using forms to gather information from guests for a birthday getaway and would like to have the submit button be an image….is that possible? Currently I only see an option to have a solid color background on the button.

    2. can I change the style of the button to an oval with rounded edges?

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Nithin – WPMU DEV Support

    (@wpmudevsupport11)

    Hi @lesleyturner,

    Option to add the image and rounded edges etc is possible using custom CSS.

    For example:

    .forminator-button-submit {
        background: url('path-url-to-image') no-repeat;
        display: block;
        width: 150px; /* width of your image */
        height: 150px; /* height of your image */
        border: none;
        text-indent: -9999px; /* hides the button text */
        
        border-radius: 10px;
    }
    

    The above CSS should help with adding an image and also the size by setting the width and height as 150px as the above. You can customize the 150px according to your image.

    The border-radius will be adding the rounded edges.

    In the above CSS, this is the line which adds the image:

        background: url('path-url-to-image') no-repeat;
    

    So make sure to update the path of the image in the above URL.

    Please do check and see whether the above helps. You’ll have to tweak the values based on the image added.

    The above CSS can be added by editing your form under Appearance Tab > Custom CSS section.

    Best Regards,

    Nithin

    Plugin Support Amin – WPMU DEV Support

    (@wpmudev-support2)

    Hello @lesleyturner ,

    I think the above message from my colleague helped with your query, so I will close this topic.
    If not, please re-open it.

    kind regards,
    Kasia

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Image for submit button’ is closed to new replies.