• Resolved namazee

    (@namazee)


    Hi there,

    I’ve implemented a usage of a form in my main page under the “Any Enquiries” part, i have also implemented some simple css rules under the form setting to edit the button. Now i realized that when i hover my mouse to the “get Help” button, the mouse pointer didn’t change to the “finger” pointer as i would usually does on any other buttons on the site.

    Is there any specific reasoning/way to go about it?

    Thank you

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

Viewing 1 replies (of 1 total)
  • Plugin Author codepeople

    (@codepeople)

    Hello @namazee,

    Actually, the button is displaying the default cursor determined by the browser, but if you want to display the pointer cursor, you simply should edit your style definition as follows:

    
    #fbuilder .my-button input {
        background: #0B60A9 !important;
        color: white !important;
        border: 0 !important;
        width: auto !important;
        cursor: pointer !important;
    }
    

    Pay attention to the new css rule:

    cursor: pointer !important;

    and that’s all.
    Best regards.

Viewing 1 replies (of 1 total)
  • The topic ‘Button Hover’ is closed to new replies.