Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #1017533

    Hi,

    Wander if you can help… again.

    I am needing the button “SEND MESSAGE” below my form at the bottom of the page http://huntpr.co.za/#contact to change to a different color other than current light blue on rollover?

    Is there CSS for this?

    I tried:

    .page-id-734 input[type=’SEND MESSAGE’]:hover {
    background-color: #e3b38b;
    color: white;
    border-color: #e3b38b;
    }

    #1017715

    Hey timchurchman,

    Please try the following in Quick CSS under Enfold->General Styling:

    .page-id-734 #contact input[type='submit']:hover {
      background-color: green !important;
    }

    Best regards,
    Rikard

    #1017788

    Hi, doesn’t work unfortunately.

    Used this code:
    .page-id-734 #contact input[type=’SEND MESSAGE’]:hover {
    background-color: #ddae87 !important;
    }

    Color i needed it to change to is #ddae87 so changed your code to that.
    Also button needed it to say: “SEND MESSAGE” not ‘submit’ so amended code you gave to that.

    Added logins if need to take a look

    #1017837

    Hi,

    This won’t work since type is not a reference to what text value the button has, but its functionality. It’s a submit form button.

    .page-id-734 #contact input[type=’SEND MESSAGE’]:hover {
    background-color: #ddae87 !important;
    }

    Please try the code I sent again without altering it.

    Best regards,
    Rikard

    #1017851

    Unfortunately still not working,

    Previously used this code and its still in quick CSS

    .page-id-734 input[type=’SEND MESSAGE’]:hover {
    background-color: #ddae87;
    color: white;
    border-color: #ddae87;
    }

    However even removing this doesn’t work

    #1018123

    Hi,

    I removed your non-working CSS and added the one I posted on the very top of the Quick CSS box and it’s working, please review your site.

    Best regards,
    Rikard

    #1018179

    Thanks so much, really appreciate your help, there is unfortunately now a thin green line underneath?

    #1018219

    Hi,

    I can’t see that on my end, but my screen is not the greatest though. You can add a border argument to the CSS in question as well though, or remove it using this:

    border:none !important;

    Best regards,
    Rikard

    #1018282

    Hi thanks,

    I haven’t touched a thing but now the whole button rollover as green??

    #1018414

    Hi,

    Yes, that is the colour I added with the CSS, please change it to the colour of your liking.

    Best regards,
    Rikard

    #1018861

    Sorry should have been more clear, i have adjust code to my color but doesn’t change:

    .page-id-734 #contact input[type=’SEND MESSAGE’]:hover {
    background-color: #ddae87 !important;
    }

    #1018946

    Hi,

    Ok, but I’ve already told you that the CSS you are using will not work. Please use this instead:

    .page-id-734 #contact input[type='submit']:hover {
      background-color: green !important;
      border-color: red !important;
      color: pink !important;
    }

    Replacing submit with your own text will not work.

    Just replace the colour with your own, regenerate files under Enfold->Performance, clear your local browser cache and reload the page.

    Best regards,
    Rikard

Viewing 12 posts - 1 through 12 (of 12 total)
  • You must be logged in to reply to this topic.